- 27 Aug, 2014 40 commits
-
-
benwells authored
TBR=phoglund NOTRY=true BUG=408006 Review URL: https://codereview.chromium.org/506423002 Cr-Commit-Position: refs/heads/master@{#292120}
-
benwells authored
BUG=405800 Review URL: https://codereview.chromium.org/510693002 Cr-Commit-Position: refs/heads/master@{#292119}
-
benwells authored
This moves all checks in the browser process into a common function. BUG=368372 Review URL: https://codereview.chromium.org/489313002 Cr-Commit-Position: refs/heads/master@{#292118}
-
yurys authored
The instrumentation was dropped and the code is unused. BUG=None Review URL: https://codereview.chromium.org/510703002 Cr-Commit-Position: refs/heads/master@{#292117}
-
hashimoto authored
BUG=407750 TEST=unit_tests Review URL: https://codereview.chromium.org/511753002 Cr-Commit-Position: refs/heads/master@{#292116}
-
benwells authored
TBR=gcasto NOTRY=true BUG=407998 Review URL: https://codereview.chromium.org/508893002 Cr-Commit-Position: refs/heads/master@{#292115}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#292114}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/502293002 Cr-Commit-Position: refs/heads/master@{#292113}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/502203002 Cr-Commit-Position: refs/heads/master@{#292112}
-
thestig authored
BUG=401588 Review URL: https://codereview.chromium.org/507913002 Cr-Commit-Position: refs/heads/master@{#292111}
-
nhiroki authored
SWProviderHost had sent the SetVersionAttributes message to set version attribtues of SWContainer (eg. navigator.serviceWorker.installing), but these attributes were moved into SWRegistration and the message is now sent from SWRegistrationHandle. BUG=404982 TEST=content_unittests --gtest_filter=ServiceWorker* TEST=run_webkit_tests.py --debug http/tests/serviceworker Review URL: https://codereview.chromium.org/496983002 Cr-Commit-Position: refs/heads/master@{#292110}
-
n.bansal authored
This patch adds libpdf.so to whitelisted plugins so that it can use histograms. Without this patch, an error is displayed every time when Chrome is launched with OOP PDF flag and PDF file is opened. BUG=405305 Review URL: https://codereview.chromium.org/508543002 Cr-Commit-Position: refs/heads/master@{#292109}
-
jam authored
TBR=scottmg@chromium.org Review URL: https://codereview.chromium.org/510673002 Cr-Commit-Position: refs/heads/master@{#292108}
-
skia-deps-roller authored
https://skia.googlesource.com/skia/+log/d3f6e893df53fb0cfeefd01a8a49a77c72d742bd..5e8dbd31de0dff44aff83295bdfe518477a5a088 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel TBR=djsollen@google.com Review URL: https://codereview.chromium.org/506403002 Cr-Commit-Position: refs/heads/master@{#292107}
-
falken authored
Reland of 2da192af after: - disabling some layout tests that need to be rebaselined - landing 6cce6b78f "Decouple script_url from ServiceWorkerRegistration" so Registration doesn't get in a weird state with a script_url that failed to register Before this patch, register() would delete an existing registration at the scope if the script URL didn't match, and register a new one. This overwriting creates a scenario where old tabs have a different controller than new tabs, which the Service Worker spec avoids. This patch implements the spec steps for same-scope, new script register(). That means: - If the existing registration is uninstalling, wait for that to complete before doing anything. - Create a new worker which becomes the installing worker of the existing registration. BUG=398355 TEST=https://codereview.chromium.org/480943002/ Review URL: https://codereview.chromium.org/506043002 Cr-Commit-Position: refs/heads/master@{#292106}
-
pedrosimonetti authored
TBR=thestig BUG=407904 Review URL: https://codereview.chromium.org/504253003 Cr-Commit-Position: refs/heads/master@{#292105}
-
sammc authored
This change adds DataSource and DataSink interface request parameters to SerialService::Connect, passes them through to SerialConnection instances via SerialConnectionFactory; the SerialConnection now uses a DataSourceSender and a DataSinkReceiver for implementing serial receive and send, respectively. BUG=389016 Review URL: https://codereview.chromium.org/488363002 Cr-Commit-Position: refs/heads/master@{#292104}
-
zmo authored
BUG=405354 TEST=about:gpu page for Win/NVIDIA with driver version forced to "", gpu_unittests R=kbr@chromium.org Review URL: https://codereview.chromium.org/503243002 Cr-Commit-Position: refs/heads/master@{#292103}
-
raymes authored
This includes some minor changes which allow tests to when NPObject is replaced by gin in pepper: -Add shared library exports for use of PepperTryCatch and ScopedPPVarArray in tests. -Add gin as a dependency to content_unittests for use in host_var_tracker_unittest -Change TestInstanceDeprecated so that it doesn't execute a script from the ScriptableObject upon destruction. The reason for this is that the garbage collector is manually run from the destructor of the plugin Instance object. This results in destruction of the ScriptableObject and then javascript is re-entered via ExecuteScript. This should never happen outside tests because the garbage collector won't be run synchronously. Instead of running ExecuteScript, which just set a variable in the Instance object to verify that the ScriptableObject was correctly destroyed. BUG=351636 Committed: https://chromium.googlesource.com/chromium/src/+/92c3074f4b4417924115f880657f1ec15da0e0ba Review URL: https://codereview.chromium.org/472693002 Cr-Commit-Position: refs/heads/master@{#292102}
-
thestig authored
Revert of Cleanup: Remove unneeded SSE2 checks and unused code. (patchset #4 of https://codereview.chromium.org/459603003/) Reason for revert: Passed the win x64 trybot, but failed on the win 64 builder. Original issue's description: > Cleanup: Remove unneeded SSE2 checks and unused code. > > BUG=349320 > > Committed: https://chromium.googlesource.com/chromium/src/+/b2cd99b39c3744f61231f8818f6c7a3d2881f0f0 TBR=cpu@chromium.org,dalecurtis@chromium.org,senorblanco@chromium.org NOTREECHECKS=true NOTRY=true BUG=349320 Review URL: https://codereview.chromium.org/513663002 Cr-Commit-Position: refs/heads/master@{#292101}
-
thestig authored
BUG=349320 Review URL: https://codereview.chromium.org/459603003 Cr-Commit-Position: refs/heads/master@{#292100}
-
vitalyp authored
BUG=393873 R=dbeam@chromium.org Review URL: https://codereview.chromium.org/507933002 Cr-Commit-Position: refs/heads/master@{#292099}
-
sullivan authored
For blink changes, the git cl upload isn't working correctly for me with 'origin/master' at the end. I'm clearly not a git expert. Is there a better solution? If not, I'll add a test to this one. BUG= Review URL: https://codereview.chromium.org/469373006 Cr-Commit-Position: refs/heads/master@{#292098}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/506793002 Cr-Commit-Position: refs/heads/master@{#292097}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/503683003 Cr-Commit-Position: refs/heads/master@{#292096}
-
rockot authored
This prevents content verification (when active) from disabling an extension when the extension attempts to load a non-existent resource in its own chrome-extension URL space. BUG=404802 Review URL: https://codereview.chromium.org/512573003 Cr-Commit-Position: refs/heads/master@{#292095}
-
cpu authored
two possible period values for timeBeginPeriod and timeEndPeriod. Currently while on battery we disable calls to timeBeginPeriod which make the windows timers have 15ms resolution. This change makes it so when EnableHighResolutionTimer(true) which is on AC power the timer is 1ms and EnableHighResolutionTimer(false) is 4ms. This should provide significant power savings while meeting some timer resolution requirements needed by the GPU compositor. But also this CL fixes the following: EnableHighResolutionTimer() and ActivateHighResolutionTimer() are pretty broken. This CL fixes most issues: 1- The existing logic fails to account that EnableHighResolutionTimer can be called while the browser is running 2- All related functions need to be thread safe. 3- ActivateHighResolutionTimer was buggy. BUG=153139 Review URL: https://codereview.chromium.org/489793003 Cr-Commit-Position: refs/heads/master@{#292094}
-
dtu authored
Hopefully this will reduce flake and overhead from running the web server. BUG=336558 TEST=Enable IppetPowerMonitor.CanMonitorPower(), then tools/telemetry/run_tests ippet on Windows. Review URL: https://codereview.chromium.org/504333003 Cr-Commit-Position: refs/heads/master@{#292093}
-
mukai authored
This CL includes the following refactorings: - minimized home is simply a layer instead of views - moves the mouse click handler of minimized home to home card impl - home card now has the same size of the screen. Changing state is now simply changing its position. Then schedule the animation between BOTTOM state and CENTERED state. BUG=398062 R=sadrul@chromium.org, oshima@chromium.org TEST=manually on remote desktop Review URL: https://codereview.chromium.org/478293004 Cr-Commit-Position: refs/heads/master@{#292092}
-
hashimoto authored
To stop directly depending on apps/window_size_sizer from AppWindow. BUG=403726 TBR=cbentzel@chromium.org for include/namespace fix in chrome/browser/prerender/prerender_contents.cc Review URL: https://codereview.chromium.org/503233003 Cr-Commit-Position: refs/heads/master@{#292091}
-
yoz authored
* Fixed in this version: dependencies for *_api_registration on *_api. Split bundle generation steps so that API registration is generated in browser, not common. We now have schema generation, schema bundle generation, and schema bundle registration generation; the last of these is generated in a separate build target and output to browser rather than common. Fix a couple of dangling gyp issues also. BUG=405226 TBR=scottmg@chromium.org,sky@chromium.org Review URL: https://codereview.chromium.org/513633002 Cr-Commit-Position: refs/heads/master@{#292090}
-
John Abd-El-Malek authored
BUG=341898 TBR=mpcomplete@chromium.org Review URL: https://codereview.chromium.org/511723002 Cr-Commit-Position: refs/heads/master@{#292089}
-
skia-deps-roller authored
https://skia.googlesource.com/skia/+log/2a65a238b0e688356aee09d08f3f8a317359b4d2..d3f6e893df53fb0cfeefd01a8a49a77c72d742bd CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel TBR=djsollen@google.com Review URL: https://codereview.chromium.org/507863003 Cr-Commit-Position: refs/heads/master@{#292088}
-
miu authored
The code was deleted at r290374. BUG=227278 TBR=ccameron Review URL: https://codereview.chromium.org/504023002 Cr-Commit-Position: refs/heads/master@{#292087}
-
raymes authored
TBR=binji@chromium.org Review URL: https://codereview.chromium.org/498123002 Cr-Commit-Position: refs/heads/master@{#292086}
-
hashimoto authored
Move BaseSearchProvider, SearchProvider, AnswersCache to components/omnibox BUG=388515 TBR=bauerb@chromium.org for include fix in chrome/browser/android/omnibox/autocomplete_controller_android.cc Review URL: https://codereview.chromium.org/489353004 Cr-Commit-Position: refs/heads/master@{#292085}
-
chrome://serviceworker-internals/horo authored
Currently max-width is set in .serviceworker-scope. So if the scope is too long, it could be hidden. BUG=N/A Review URL: https://codereview.chromium.org/506603003 Cr-Commit-Position: refs/heads/master@{#292084}
-
boliu authored
g_raster_required_for_activation_delay is used after free. See bug for details. Fix by putting the delay object in RasterTaskGraphRunner which itself is a leaky lazy instance. BUG=402653 Review URL: https://codereview.chromium.org/498553005 Cr-Commit-Position: refs/heads/master@{#292083}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/506683002 Cr-Commit-Position: refs/heads/master@{#292082}
-
dcheng authored
This patch was generated by running the rewrite_scoped_refptr clang tool on a Linux build. BUG=110610 Review URL: https://codereview.chromium.org/504273003 Cr-Commit-Position: refs/heads/master@{#292081}
-