- 07 Aug, 2012 40 commits
-
-
kochi@chromium.org authored
These added fields are necessary to work with our file system implementation. BUG=chromium:127728 TEST=unit_tests --gtest_filter="DriveAPI*" Review URL: https://chromiumcodereview.appspot.com/10855017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150291 0039d316-1c4b-4281-b951-d872f2087c98
-
nhiroki@chromium.org authored
BUG=139270 Review URL: https://chromiumcodereview.appspot.com/10828177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150290 0039d316-1c4b-4281-b951-d872f2087c98
-
binji@chromium.org authored
Slightly modified from noelallen's codereview.chromium.org/10823177. My changes: style nits, as well as fixing pnacl builds original CL description follows: This CL adds support for Debug and Release configs. It moves functions that require knowledge of the Makefile to make_rules.py and keeps functions that require understanding of the DSC files in generate_make.py. It adds a 'config' parameter to the embed in common.js. Updates all index.html files to support the new config parameter. make_rules.py has been converted to a class. This allows the object to persist state about the build which allows us to remove knowledge of the make rules from generate_make.py. BUG=none TBR=noelallen@chromium.org NOTRY=true Review URL: https://chromiumcodereview.appspot.com/10828187 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150289 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150288 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
TBR=dimich@chromium.org Review URL: https://chromiumcodereview.appspot.com/10831188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150285 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
The default zoom level upperbound of WebKit is 300%, while content::kMaximumZoomFactor is 500%. The larger limit must be set before restoring the host-URL zoom levels, otherwise 400% or 500% zoom level is clipped to 300%. BUG=139559 Review URL: https://chromiumcodereview.appspot.com/10828143 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150284 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=140499 TEST=Find iShock, test with http://www.aresluna.org/gamepad-tester/ Review URL: https://chromiumcodereview.appspot.com/10832162 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150283 0039d316-1c4b-4281-b951-d872f2087c98
-
robertshield@chromium.org authored
Cause chrome.exe to introspect to find the version of chrome.dll to load. This should ensure that mismatched exe and dll versions never occur. Also, wstring -> string16. BUG=140779 TEST=Install Chrome, smash Omaha registry keys, Chrome still runs. Review URL: https://chromiumcodereview.appspot.com/10825213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150282 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Ensure we don't have zombie child processes that get started but never get a chance to connect to the browser process. Since they never connected, they will never have an OnChannelError and so they don't get destroyed. This was causing the sharding_supervisor script to hang on Linux since there were child processes that didn't exit. It looks like there are race conditions in some tests where child processes start but the browser closes before they can connect. Probably we only see this on Linux because it's faster than other platforms or the shutdown timing is different. BUG=140054 Review URL: https://chromiumcodereview.appspot.com/10855013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150278 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
LauncherFaviconLoaderBrowsertest.ChangeLauncherIcons on cros bots) - Update favicon URLs on FinishLoad for main frame Previously it was done on didStopLoading for _any_ frame. That causes a stream of spurious favicon URL updates for every <iframe>. This is now moved to on didFinishLoad and get triggered only for the main frame. This ensures that icon loads always get initiated after all of the other page resources have been fetched. Note that DidFinishDocumentLoad runs potentially before all subresources have been fetched, which means that the icon requests may compete with subresources for network bandwidth. didFinishLoad is the closest place to where IconController does it, and we already have icons at this point. BUG=131567 Review URL: https://chromiumcodereview.appspot.com/10831163 TBR=aruslan@chromium.org Review URL: https://chromiumcodereview.appspot.com/10834201 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150277 0039d316-1c4b-4281-b951-d872f2087c98
-
kaiwang@chromium.org authored
This is the second try of https://src.chromium.org/viewvc/chrome?view=rev&revision=150240 TBR=jar Review URL: https://chromiumcodereview.appspot.com/10829212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150276 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
TBR=gene@chromium.org BUG=141037 TEST=none Review URL: https://chromiumcodereview.appspot.com/10854021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150275 0039d316-1c4b-4281-b951-d872f2087c98
-
aelias@chromium.org authored
This flag causes mouse events to be mapped to touch gesture events in RenderWidgetHost: - Hold left mouse button and move: GestureScrollUpdate - Hold right mouse button and move on Y axis: GesturePinchUpdate - Middle mouse button down: GestureTapDown - Middle mouse button up: GestureTap This provides a convenient way to test touch-oriented features with only an ordinary Linux machine. Note that to get pinch gesture support, --enable-threaded-compositing must also be set. BUG=132607 Review URL: https://chromiumcodereview.appspot.com/10825192 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150274 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
This is so we can pass through win_rel trybot, which seems to not liking my git mvs. BUG=125846 TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10837132 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150273 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
- Use new overflow chevron assets; - Code drawing hover/pressed state and rotate image for left/right launcher; BUG=132855 TEST=Verify launcher chevron uses new image and has hover effect similar to app menu and ubertray. R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/10828184 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150272 0039d316-1c4b-4281-b951-d872f2087c98
-
antrim@chromium.org authored
Added special container for background on lock screen. Background view can now be created in specific container. Disabled lock screen wallpaper implementation based on serving PNG image via data source. BUG=136853,137581 TEST=Lock screen on multimonitor configuration. Check that windows on secondary display are hidden with background. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=149869 Review URL: https://chromiumcodereview.appspot.com/10810039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150271 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10800029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150270 0039d316-1c4b-4281-b951-d872f2087c98
-
groby@chromium.org authored
Hoisted out common code while preparing for bigger changes for "waiting" dialog R=gbillock@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/10834188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150269 0039d316-1c4b-4281-b951-d872f2087c98
-
jyasskin@chromium.org authored
Copy the !details.is_in_page restriction from TabHelper to PageActionController::DidNavigateMainFrame Oops, r145054 forgot to do this. BUG=139410 Review URL: https://chromiumcodereview.appspot.com/10834184 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150268 0039d316-1c4b-4281-b951-d872f2087c98
-
kmadhusu@chromium.org authored
For readability, set the device name as isolated file system name. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10829210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150267 0039d316-1c4b-4281-b951-d872f2087c98
-
jzern@chromium.org authored
adds lossless encoder/decoder with alpha support. the same is to used to add alpha+VP8 support. BUG=139925 BUG=133161 TEST=webkit layout tests Review URL: https://chromiumcodereview.appspot.com/10832153 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150264 0039d316-1c4b-4281-b951-d872f2087c98
-
mad@chromium.org authored
BUG=112732 TEST=Make sure that we never show the translate bar for pages that have the notranslate content tag. Review URL: https://chromiumcodereview.appspot.com/10827183 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150263 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
BUG=140578 Review URL: https://chromiumcodereview.appspot.com/10831184 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150262 0039d316-1c4b-4281-b951-d872f2087c98
-
yongsheng.zhu@intel.com authored
There are 2 kinds of issues to make it failed: 1) pak files are stored in a different directory on Android other than other platforms. 2) The setting and getting locale is different from Linux, but similar with ChromiumOS. BUG= TEST=run_tests.py -s ui_unittests Review URL: https://chromiumcodereview.appspot.com/10825007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150261 0039d316-1c4b-4281-b951-d872f2087c98
-
dtu@chromium.org authored
BUG=None. TEST=chrome://histograms on Windows show valid results for the WinSAT histograms. Review URL: https://chromiumcodereview.appspot.com/10828165 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150260 0039d316-1c4b-4281-b951-d872f2087c98
-
dtu@chromium.org authored
Make numAnimationFrames and numFramesSentToScreen available in software mode; these two have the same value in that mode. Make totalPaintTimeInSeconds work in software mode. This change depends on http://wkbug.com/92184 and http://wkbug.com/92325. BUG=chromium:137754 TEST=Launch Chrome with --enable-gpu-benchmarking, open a tab to a non-composited page, and type chrome.gpuBenchmarking.renderingStats(). numAnimationFrames, numFramesSentToScreen, and totalPaintTimeInSeconds should be present. Review URL: https://chromiumcodereview.appspot.com/10818038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150259 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
BUG=138550 Review URL: https://chromiumcodereview.appspot.com/10828186 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150258 0039d316-1c4b-4281-b951-d872f2087c98
-
jschuh@chromium.org authored
BUG=140140 Review URL: https://chromiumcodereview.appspot.com/10852008 TBR=jschuh@chromium.org Review URL: http://codereview.chromium.org/10854020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150257 0039d316-1c4b-4281-b951-d872f2087c98
-
junmin.zhu@intel.com authored
after the window restored from minimize operation. BUG=138074 TEST=manually Review URL: https://chromiumcodereview.appspot.com/10815006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150256 0039d316-1c4b-4281-b951-d872f2087c98
-
nkostylev@chromium.org authored
TBR=ivankr BUG=133749 Review URL: https://chromiumcodereview.appspot.com/10836114 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150255 0039d316-1c4b-4281-b951-d872f2087c98
-
groby@chromium.org authored
R=gbillock@chromium.org,mpcomplete@chromium.org BUG=none Review URL: https://chromiumcodereview.appspot.com/10837130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150254 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150253 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
Move {Native,Device}MediaFileUtil from FILE thread to SequencedWorkerPool to avoid it blocks other I/O. BUG=139187 Review URL: https://chromiumcodereview.appspot.com/10829147 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150252 0039d316-1c4b-4281-b951-d872f2087c98
-
akalin@chromium.org authored
BUG=139430 Review URL: https://chromiumcodereview.appspot.com/10837111 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150251 0039d316-1c4b-4281-b951-d872f2087c98
-
dtrainor@chromium.org authored
Now that BrowserMainLoop is enabled for Android upstream, reenable some of the filters that were removed to get content_unittests to link. BUG=http://crbug.com/115941 Review URL: https://chromiumcodereview.appspot.com/10825161 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150250 0039d316-1c4b-4281-b951-d872f2087c98
-
alexeypa@chromium.org authored
r1452: Pass include directorites to midl.exe. BUG=140324 Review URL: https://chromiumcodereview.appspot.com/10830192 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150249 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
- CHECK -> DCHECK to prevent breaking exisitng histograms. Review URL: https://chromiumcodereview.appspot.com/10826180 TBR=kaiwang@chromium.org Review URL: https://chromiumcodereview.appspot.com/10829211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150246 0039d316-1c4b-4281-b951-d872f2087c98
-
yusufo@chromium.org authored
BUG=138142 Review URL: https://chromiumcodereview.appspot.com/10821116 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150245 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
BUG=138338 TEST=manual Review URL: https://chromiumcodereview.appspot.com/10823191 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150244 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
- Use filtered web navigation instead of tabs.onUpdated to reduce amount of event page launching. - Don't show loading animation for alarm-triggered or tab-triggered requests to reduce distraction. - Don't schedule a new request on each event page load. - Fix options page for CSP - Make options page actually work (it had several bugs) Review URL: https://chromiumcodereview.appspot.com/10836102 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150243 0039d316-1c4b-4281-b951-d872f2087c98
-