- 06 Feb, 2015 40 commits
-
-
mseaborn authored
Use the API that's defined in native_client/src/public/. That is already used by nacl_listener.cc, but the code in nacl_ipc_adapter.cc was written earlier, before the API in public/ was added. NaClDescCreateWithFilePathMetadata() does the same as the code we're replacing here. BUG=https://code.google.com/p/nativeclient/issues/detail?id=4073 TEST=browser_tests Review URL: https://codereview.chromium.org/897363002 Cr-Commit-Position: refs/heads/master@{#315049}
-
vmiura authored
Implements a GPU Channel level command buffer barrier, which ensures ordering between channels, without immediately notifying the GPU service. Multiple Ordering Barriers can be combined into single IPCs to the GPU service, thus this API can be used in place of ShallowFlushCHROMIUM, to reduce IPC count and GPU service overhead. BUG=454500 Review URL: https://codereview.chromium.org/896723008 Cr-Commit-Position: refs/heads/master@{#315048}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/055aa2d..7e38934 TBR=apavlov@chromium.org,dpranke@chromium.org Review URL: https://codereview.chromium.org/909513002 Cr-Commit-Position: refs/heads/master@{#315047}
-
igsolla authored
Ensure that the android_webview_locales_rename_paks action is not executed when building downstream. Review URL: https://codereview.chromium.org/881623003 Cr-Commit-Position: refs/heads/master@{#315046}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/5245cb4..50785a3 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/872893005 Cr-Commit-Position: refs/heads/master@{#315045}
-
skyostil authored
BUG=455796 Review URL: https://codereview.chromium.org/893843005 Cr-Commit-Position: refs/heads/master@{#315044}
-
noms authored
BUG=447311 TEST=Start Chrome with --enable-fast-user-switching. In the avatar bubble, any profiles with default avatar should display the low res, transparent background images (i.e. not the high res images with the grey background) Review URL: https://codereview.chromium.org/900223004 Cr-Commit-Position: refs/heads/master@{#315043}
-
rmcilroy authored
Adds a deadline overrun step to the RendererSchedulerIdlePeriod trace event to make it obvious when an idle period lasts longer than its deadline. Also adds a TRACE_EVENT_ASYNC_STEP_INTO_WITH_TIMESTAMP0 which is required to add the step at the appropriate time. BUG=455713 Review URL: https://codereview.chromium.org/908473002 Cr-Commit-Position: refs/heads/master@{#315042}
-
jochen authored
This is to rule out the (unlikely) case that we're sending idle notifications to a disposed isolate BUG=425035 R=dcarney@chromium.org Review URL: https://codereview.chromium.org/873723008 Cr-Commit-Position: refs/heads/master@{#315041}
-
zhaoqin authored
TBR=clamy@chromium.org BUG=456131 NOTRY=true Review URL: https://codereview.chromium.org/866043006 Cr-Commit-Position: refs/heads/master@{#315040}
-
mseaborn authored
BUG=https://code.google.com/p/nativeclient/issues/detail?id=3864 TEST=checkdeps Review URL: https://codereview.chromium.org/901903004 Cr-Commit-Position: refs/heads/master@{#315039}
-
sdefresne authored
Change HistoryService::ExpireLocalAndRemoteHistoryBetween() to receive the history::WebHistoryService instance to use in order to remove a dependency of HistoryService on Profile. It is not possible to pass the WebHistoryService instance to the HistoryService constructor and add a dependency between the two factories due to http://crbug.com/171406 (as WebHistoryService depends on a KeyedService calling Profile::GetRequestContext()). BUG=453790 Review URL: https://codereview.chromium.org/901803005 Cr-Commit-Position: refs/heads/master@{#315038}
-
aberent authored
This rolls in an update to android_tools.gyp that provides targets for Google Play Sevices libraries. BUG=450675 Review URL: https://codereview.chromium.org/900273003 Cr-Commit-Position: refs/heads/master@{#315037}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/f5c6006..055aa2d TBR=apavlov@chromium.org,dpranke@chromium.org Review URL: https://codereview.chromium.org/908503002 Cr-Commit-Position: refs/heads/master@{#315036}
-
skyostil authored
Revert of [telemetry] Add a V8GCTimes measurement and benchmarks. (patchset #2 id:20001 of https://codereview.chromium.org/898673005/) Reason for revert: Failing on mac: http://chromegw/i/chromium.perf/builders/Mac%2010.9%20Perf%20%281%29/builds/2017 Original issue's description: > [telemetry] Add a V8GCTimes measurement and benchmarks. > > Replaces the v8_stats metric with a v8_gc_times > measurement. This new measurement measures the amount of > time spent in GC during the whole benchmark rather than > just during gestures. > > The following gc metrics are measured: > v8_gc_incremental_marking > v8_gc_incremental_marking_idle_deadline_overrun > v8_gc_incremental_marking_outside_idle > v8_gc_incremental_marking_percentage_idle > v8_gc_mark_compactor > v8_gc_mark_compactor_idle_deadline_overrun > v8_gc_mark_compactor_outside_idle > v8_gc_mark_compactor_percentage_idle > v8_gc_scavenger > v8_gc_scavenger_idle_deadline_overrun > v8_gc_scavenger_outside_idle > v8_gc_scavenger_percentage_idle > v8_gc_total > v8_gc_total_idle_deadline_overrun > v8_gc_total_outside_idle > > It also measures the duration of the measurement and the > amount of CPU time used. > > The v8_garbage_collection_cases benchmark is modified to > use this new v8_gc_times measurement, and v8.top_25_smooth > and v8.key_mobile_sites_smooth benchmarks have been added. > > Since v8_garbage_collection_cases was the only benchmark to > use the is_fast metric type, and these measurements are now > done as part of the v8_gc_times measurement now, this CL > also removes the fast metric type. > > Perf Sherrifs: Since this CL changes he way in which the GC > measurements are done it may cause a movement in the > v8_garbage_collection_cases benchmarks. > > Committed: https://crrev.com/452de5927e54e1da0d57a4b2df8b447f4d442360 > Cr-Commit-Position: refs/heads/master@{#314868} TBR=hpayer@chromium.org,rmcilroy@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/904903002 Cr-Commit-Position: refs/heads/master@{#315035}
-
battre authored
Each profile (regular and incognito) has its own HostContentSettingsMap. This is modified for example in ContentSettingSingleRadioGroup and also presented in the content settings exceptions in chrome://settings. However, the values of the HCSM are not reflected in the CookieSettings of an incognito session because a single CookieSettings instance is shared between regular and incognito mode. This CL fixes that. BUG=432398 Review URL: https://codereview.chromium.org/900803002 Cr-Commit-Position: refs/heads/master@{#315034}
-
simonhatch authored
Revert of Temporarily upload minidump to private cloud storage on windows. (patchset #1 id:1 of https://codereview.chromium.org/899293003/) Reason for revert: Got a minidump, reverting. Original issue's description: > Temporarily upload minidump to private cloud storage on windows. > > Should be reverted once we have one from crashing startup.warm.blank_page perf test. > > BUG=433966 > > Committed: https://crrev.com/82a66024f96d8643f42e9ad21fcf3e79e78c8804 > Cr-Commit-Position: refs/heads/master@{#314902} TBR=sullivan@chromium.org,skyostil@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=433966 Review URL: https://codereview.chromium.org/896303003 Cr-Commit-Position: refs/heads/master@{#315033}
-
lizeb authored
Review URL: https://codereview.chromium.org/907443002 Cr-Commit-Position: refs/heads/master@{#315032}
-
apavlov authored
Speculatively revert https://codereview.chromium.org/791493015 due to multiple browser_tests failures (e.g. see https://build.chromium.org/p/chromium.webkit/builders/Win7%20%28dbg%29/builds/15751) They are all due to SystemURLRequestContextGetter-related leaks. This reverts commit 8fbff4fa. TBR=megjablon NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=456110 Review URL: https://codereview.chromium.org/903073003 Cr-Commit-Position: refs/heads/master@{#315031}
-
Sami Kyostila authored
BUG=456109 R=alexclarke@chromium.org Review URL: https://codereview.chromium.org/880603005 Cr-Commit-Position: refs/heads/master@{#315030}
-
maruel authored
$ git log e6677c870..94aea8c60 --date=short --format='%ad %ae %s' | sed 's/@chromium\.org//' 2015-02-05 maruel Lower parallelism to 8 threads on 32 bits system. TBR=vadimsh@chromium.org BUG=419862 Review URL: https://codereview.chromium.org/901283004 Cr-Commit-Position: refs/heads/master@{#315029}
-
phoglund authored
https://github.com/webrtc/apprtc/issues/48 BUG=455758 R=kjellander@chromium.org Review URL: https://codereview.chromium.org/908483003 Cr-Commit-Position: refs/heads/master@{#315028}
-
glider authored
BUG=456095 TBR=skyostil@chromium.org Review URL: https://codereview.chromium.org/895753003 Cr-Commit-Position: refs/heads/master@{#315027}
-
Sami Kyostila authored
R=primiano@chromium.org Review URL: https://codereview.chromium.org/875403007 Cr-Commit-Position: refs/heads/master@{#315026}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/7a9fd74..f5c6006 TBR=apavlov@chromium.org,dpranke@chromium.org Review URL: https://codereview.chromium.org/890603003 Cr-Commit-Position: refs/heads/master@{#315025}
-
benwells authored
This is used for the app banner manager to determine if it should show a banner for the current page. BUG=452825 Review URL: https://codereview.chromium.org/893793005 Cr-Commit-Position: refs/heads/master@{#315024}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#315023}
-
jkarlin authored
There are correctness issues in the ServiceWorkerCacheStorage when multiple operations occur on the same key in parallel. The various steps of the operations can interleave. This CL serializes all storage operations by placing all operations in a queue and calling the next operation from the callback of the previous operation. While this provides correctness, it is sub-optimal. We really only need to serialize operations that affect the same key. A smarter scheduler can be created in the future to implement that (see https://crbug.com/451174). What this CL does: * Creates a new ServiceWorkerCacheScheduler class used by both ServiceWorkerCache and ServiceWorkerCacheStorage * Refactor ServiceWorkerCache to use the new scheduler * Make ServiceWorkerCacheStorage run sequentially, using the scheduler BUG=450697 Review URL: https://codereview.chromium.org/867903005 Cr-Commit-Position: refs/heads/master@{#315022}
-
tnagel authored
For Chromium 44 not only SSLv3 support but also the policies that allow to control SSL/TLS versions will be removed. BUG=436391 Review URL: https://codereview.chromium.org/899973005 Cr-Commit-Position: refs/heads/master@{#315021}
-
yurys authored
We are going to remove Timeline domain from the remote debugging protocol soon. This CL fixes remaining usages of timeline commands. BUG=448318 Review URL: https://codereview.chromium.org/902893005 Cr-Commit-Position: refs/heads/master@{#315020}
-
johnme authored
A regression was introduced by https://codereview.chromium.org/823993003 whereby the first push registration only works if the user is signed in, and hence an AppHandler happens to be added by sync. Instead Push should add AppHandlers for pending registrations so there is always an app handler while we are trying to register. BUG=456054 Review URL: https://codereview.chromium.org/905713002 Cr-Commit-Position: refs/heads/master@{#315019}
-
mlamouri authored
Instead of returning a boolean to say whether the focus suceeded, this is now returning an updated WindowClient which will contain the new focus state. This is a three sided CL: Part 1: https://codereview.chromium.org/897493002 Part 2: <this> Part 3: https://codereview.chromium.org/868233006 BUG=447212 Review URL: https://codereview.chromium.org/894853007 Cr-Commit-Position: refs/heads/master@{#315018}
-
alemate authored
BUG=416494 TEST=manual Review URL: https://codereview.chromium.org/903733002 Cr-Commit-Position: refs/heads/master@{#315017}
-
mkwst authored
When `notifySignedOut` is called, we need to ensure that we stop automagically providing a user's credentials to the website that triggered the notification. This CL does that in the brute-force way that we all know and love: grab all forms, walk through each and set a flag for matching origins. BUG=450581 Review URL: https://codereview.chromium.org/902843002 Cr-Commit-Position: refs/heads/master@{#315016}
-
phoglund authored
Depends on https://codereview.chromium.org/907433002/. BUG=455758 TESTED=Removed the webrtc-samples directory, applied https://codereview.chromium.org/900403002, compiled and then ran: out/Release/browser_tests --run-manual --gtest_filter=WebRtcApprtcBrowserTest.MANUAL_WorksOnApprtc on Linux. Review URL: https://codereview.chromium.org/902133002 Cr-Commit-Position: refs/heads/master@{#315015}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/906493002 Cr-Commit-Position: refs/heads/master@{#315014}
-
habib.virji authored
Sets the domCode value to the WebKeyboard event. Blink then using embedder API call to converts a dom code to a DOM code value. DOM3 code value are defined in keyboard_converer_data.h, where it maps the native value to the DOM code value. On blink side, it sends dom key value to fetch DOM3 code value. Includes changes to the eventsender as previously it used windowsVirtualKeyCode. This has been replaced by code string, which is used to find equivalent domCode value. BUG=227231 R=garykac, Wez Review URL: https://codereview.chromium.org/658183002 Cr-Commit-Position: refs/heads/master@{#315013}
-
peter authored
Update the Chromium uses of the Blink Push API-related headers to match the new locations of these file. This is part of a three-sided patch: [1] https://codereview.chromium.org/888513003/ [2] This patch. [3] https://codereview.chromium.org/871643005/ BUG=453032 Review URL: https://codereview.chromium.org/894683002 Cr-Commit-Position: refs/heads/master@{#315012}
-
marja authored
Script streaming is now on by default since M41 (because of this config turned it always on). Blink side ignores the config since r189473. R=jochen@chromium.org BUG= Review URL: https://codereview.chromium.org/905683002 Cr-Commit-Position: refs/heads/master@{#315011}
-
mukai authored
The implementation of LineBreaker is mostly a straightforward porting of RenderTextWin's implementation. BUG=248597 R=ckocagil@chromium.org, msw@chromium.org TEST=manually, customized ash_shell Review URL: https://codereview.chromium.org/882643005 Cr-Commit-Position: refs/heads/master@{#315010}
-