- 04 Sep, 2019 40 commits
-
-
Roman Aleksandrov authored
Bug: 927331 Change-Id: I10a586393caed0c0dd32aa26f6b81a757e84deb8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1782816Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Roman Aleksandrov <raleksandrov@google.com> Cr-Commit-Position: refs/heads/master@{#693205}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/2e1d9ff85e0a..030358ed22a4 git log 2e1d9ff85e0a..030358ed22a4 --date=short --no-merges --format='%ad %ae %s' 2019-09-04 ntfschr@chromium.org Devil: add Q version code constant Created with: gclient setdep -r src/third_party/catapult@030358ed22a4 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/catapult-autoroll Please CC simonhatch@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=simonhatch@google.com Bug: None Change-Id: I64fdfa419e921f7329ac4cd02e3a840b63a6aa7d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783845Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#693204}
-
Ayu Ishii authored
This change allows this API to be used by same origin iframes in addition to top-level frames. Bug: 989184 Change-Id: I9c402fb4ce3188ebadbc647c9f781a40a8a3b63e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1762917 Commit-Queue: Ayu Ishii <ayui@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#693203}
-
Tom Anderson authored
This is a reland of a752710d Original change's description: > Use shared memory to send images to X server > > When playing back a 1440p 60fps video without hardware acceleration, ~15% of > frames would be dropped. With this change, I'm not getting any dropped frames. > > Background: > The bottleneck is in SoftwareOutputDeviceX11::EndPaint, which (for 4K video) was > taking ~0.06s per frame, which was limiting the output to ~15fps. It was taking > so long because we were sending each frame to the X server over the wire. With > the shared memory approach from the above CL, SoftwareOutputDeviceX11::EndPaint > takes only ~0.00002s. > > Summary of changes: > * Switch usage of XPutImage() to XShmPutImage() when possible. > * Shm segment is recycled across frames. > * Segment has a 1.5x growth policy to give windows room to resize without > having to reallocate for each frame. > * Segment has space for 2 frames. It was experimentally found that bumping > this up to 3 didn't give significant gains. > * X server sends a completion event when XShmPutImage() is finished, so we > cannot recycle the memory until getting this event. > * Event processing happens on the GPU main thread, but processing needs to > happen on the compositor thread, so forwarding the event is necessary. This > is implemented in XShmImagePool. > > BUG=991633 > > Change-Id: Ia7782cb9e21d0a93d3250c118e4ba76025354e40 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1693737 > Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> > Reviewed-by: kylechar <kylechar@chromium.org> > Reviewed-by: Robert Kroeger <rjkroege@chromium.org> > Reviewed-by: Kenneth Russell <kbr@chromium.org> > Reviewed-by: Jorge Lucangeli Obes <jorgelo@chromium.org> > Cr-Commit-Position: refs/heads/master@{#691321} R=jorgelo TBR=rjkroege,kbr,kylechar Bug: 991633 Change-Id: Id0533ea8ba4de45ca2242ee979197798a818826d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775500Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Jorge Lucangeli Obes <jorgelo@chromium.org> Auto-Submit: Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Cr-Commit-Position: refs/heads/master@{#693202}
-
Tomasz Wiszkowski authored
InMemoryImageFetcher invokes callback directly if an image is already in memory. Make sure that icon does not get overwrlitten by the fallback image. Bug: 1000393 Change-Id: I19d85c310b414ba65362b88beb194453fc95e19b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1782136 Auto-Submit: Ender <ender@google.com> Reviewed-by:
Brandon Wylie <wylieb@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Ender <ender@google.com> Cr-Commit-Position: refs/heads/master@{#693201}
-
François Doray authored
This reverts commit fef9e5a5. Reason for revert: Speculative revert for crbug.com/1000686 Original change's description: > Experiment with sending click as PointerEvent > > This CL adds a runtime flag that sends the > click and auxclick events as PointerEvents. > > There are more cases to fix such as context menu > events and click from other paths such as > touch and pointerlock. > > Bug: 989958 > Change-Id: I0e440ceef29e6cad202bc7f07150c7f3b6b35da0 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1762792 > Reviewed-by: Dave Tapuska <dtapuska@chromium.org> > Reviewed-by: Navid Zolghadr <nzolghadr@chromium.org> > Reviewed-by: Mustaq Ahmed <mustaq@chromium.org> > Reviewed-by: Ella Ge <eirage@chromium.org> > Commit-Queue: Navid Zolghadr <nzolghadr@chromium.org> > Cr-Commit-Position: refs/heads/master@{#693152} TBR=dtapuska@chromium.org,mustaq@chromium.org,nzolghadr@chromium.org,eirage@chromium.org Change-Id: Id81618db899ea3dd004d2b5ca882fac31c209e1d No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 989958, 1000686 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784839Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#693200}
-
Tarun Bansal authored
Add feature to not lower JavaScript priority when DeferAllScript intervention is enabled. Change-Id: I6a2fdc364398c39ae171a1e23b61e2819d4e68b6 Bug: 978490 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779167Reviewed-by:
Doug Arnett <dougarnett@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Tarun Bansal <tbansal@chromium.org> Cr-Commit-Position: refs/heads/master@{#693199}
-
Steven Bennetts authored
This also adds a constant to the mojom defining an unset value. Bug: 1000213 Change-Id: Idd3e7239d0142db6b55695ac886f51e562d4e042 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783242Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#693198}
-
Francois Doray authored
The test times out on Mac DBG bot. TBR=anniesu@google.com,kylixrd@chromium.org Bug: 974349 Change-Id: I816fa2ebbf4a3dabfd78093a737c05c30f1d0a1a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784837Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#693197}
-
Kush Sinha authored
Add a back button in Chrome OS Account Manager's account addition dialog. Please check the attached bug for mocks. Bug: 996829 Change-Id: I20f164754f730a5de443a2af38c7fbbc5d68fb7a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776033Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Kush Sinha <sinhak@chromium.org> Cr-Commit-Position: refs/heads/master@{#693196}
-
Robert Ma authored
Since https://crrev.com/c/1779543 , `git cl try` now requires the bucket name to always be specified. This change sets "luci.chromium.try" as the default bucket when no bucket is configured in builders.json or passed to `trigger_try_jobs`. Change-Id: I5d12625f49f3a57c852abdcbefe641b1eb17d7a6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783640 Auto-Submit: Robert Ma <robertma@chromium.org> Reviewed-by:
Luke Z <lpz@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Cr-Commit-Position: refs/heads/master@{#693195}
-
Yue Zhang authored
Bug: 999444 Change-Id: I753ea4f5865cb676cd8b34bcd2abc71cc52645c7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783061Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Cr-Commit-Position: refs/heads/master@{#693194}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/45812a1faa61..c2dc9c864844 git log 45812a1faa61..c2dc9c864844 --date=short --no-merges --format='%ad %ae %s' 2019-09-04 halcanary@google.com experimental/minimal_ios_mtl_skia_app 2019-09-04 fmalita@chromium.org [svgcanvas] Refactor clipping 2019-09-04 halcanary@google.com gn: try again to fix fuchsia 2019-09-04 fmalita@chromium.org [sksg] Fix mask/context overrides interaction Created with: gclient setdep -r src/third_party/skia@c2dc9c864844 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC jlavrova@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=jlavrova@google.com Bug: None Change-Id: I3aefb354e4483fc002a2e414f417ead1d76ca9ac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783848Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#693193}
-
Ben Kirchman authored
Create a base class: JavaUploadDataSinkBase extracted from OutputStreamDataSink. The base class defines abstract methods that are called at appropriate times in the base class to be implemented using appropriate output methods. Bug: 669707 Change-Id: Ib38be5bf57d158218aa973f0196d2735b0627cf9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757314Reviewed-by:
Paul Jensen <pauljensen@chromium.org> Commit-Queue: Paul Jensen <pauljensen@chromium.org> Auto-Submit: Benjamin Kirchman <kirchman@google.com> Cr-Commit-Position: refs/heads/master@{#693192}
-
Ivana Zuzic authored
When the visibility icon is clicked, the user needs to reauthenticate and the password unmasks. It becomes if the visibility icon is clicked again. Bug: 377410 Change-Id: I7f7feb17ca5a475c3a5331a715894254c7e51d98 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1781639 Commit-Queue: Ivana Zuzic <izuzic@google.com> Reviewed-by:
Friedrich [CET] <fhorschig@chromium.org> Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#693191}
-
Evan Stade authored
Also: - fire SessionManagerObserver::OnUserSessionStarted() for secondary users (as was the previous intent), to match NOTIFICATION_SESSION_STARTED. The parameter is_primary_user allows observers to differentiate between user types. TBR=bartfab@chromium.org Bug: 268984 Change-Id: Ia0158fa52910499f4ca6391a2e201dab8cfb1684 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779537Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Evan Stade <estade@chromium.org> Cr-Commit-Position: refs/heads/master@{#693190}
-
Ted Choc authored
This reverts commit e82de9ba. Reason for revert: crbug.com/1000677 Original change's description: > Add browser test for TrustableBundledExchangesFile > > Bug: 966753 > Change-Id: If6a23e14c62f5ac1639a7eb9096314c13104f9b8 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784259 > Commit-Queue: Tsuyoshi Horo <horo@chromium.org> > Reviewed-by: Kunihiko Sakamoto <ksakamoto@chromium.org> > Cr-Commit-Position: refs/heads/master@{#693091} TBR=horo@chromium.org,ksakamoto@chromium.org Change-Id: Iddbd2794d3bd7d98e76b28c9ac0a7f9b6a62f609 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 966753 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783644Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#693189}
-
Christian O. Andersson authored
Bug: N/A Test: python depot_tools/watchlists.py weblayer/common/ Change-Id: I4e7e0426d0fcdfb11457fed7216ef2cb4fc65fc4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784720 Auto-Submit: Christian O. Andersson <cricke@chromium.org> Reviewed-by:
Richard Coles <torne@chromium.org> Commit-Queue: Christian O. Andersson <cricke@chromium.org> Cr-Commit-Position: refs/heads/master@{#693188}
-
Majid Valipour authored
Extend histogram expiry for Animation Worklet histograms. The feature is expected to launch soon [1] and these histograms will be used to monitor its performance in the wild. [1] https://groups.google.com/a/chromium.org/d/msg/blink-dev/aRKT0BkrF-8/G-KuTnMBBgAJ Bug: 988713, 988707 Change-Id: I5f81dd8226b7b497d0a80e760a363535e4e4fc59 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783341Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Majid Valipour <majidvp@chromium.org> Cr-Commit-Position: refs/heads/master@{#693187}
-
Etienne Pierre-doray authored
To avoid having 2 tasks with same queue_time, each PushTask is preceded by a FastForward(). In previous CL 1778925, I put FastForward at the wrong place. This moves it to right before PushTask(). Bug: 998477 Change-Id: Ifb87e46d364b3bc3e4d555f11f09ad3a34ce4b19 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784627Reviewed-by:
Gabriel Charette <gab@chromium.org> Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Cr-Commit-Position: refs/heads/master@{#693186}
-
redatawfik authored
-When TableViewTextCell is tapped the background for the cell turned to gray while the background for the textLabel stays white. -Removing the code which sets TableViewTextCell textLabel background solves the problem. Bug: 984545 Change-Id: I615041f21b29e4c93e7d6b98b87d40be02c636e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778043 Commit-Queue: Reda Tawfik <redatawfik@google.com> Reviewed-by:
Sergio Collazos <sczs@chromium.org> Reviewed-by:
Javier Ernesto Flores Robles <javierrobles@chromium.org> Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#693185}
-
Robbie Gibson authored
There are two major changes to the design here. First, the arrow icon is now always the same color. It no longer changes color when the circle is visible. Second, the image for the border between the side_swipe view and the webpage has been removed. Now, it's always just a plain UIView with a background color. This UIView looks the same as the shadow between the toolbar and the web content (or an infobar and the web content). Bug: 998441 Change-Id: I0b96def297b7ab7688ea978ddc09d5a38be83c66 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1768593Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: Robbie Gibson <rkgibson@google.com> Cr-Commit-Position: refs/heads/master@{#693184}
-
gogerald authored
to suppress 'UnusedResources' lint warning when feed is disabled. Bug: 982018 Change-Id: I841104a65ed7f1f7bf02b2bd4fdc40ed90505ac6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1782718Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Ganggui Tang <gogerald@chromium.org> Auto-Submit: Ganggui Tang <gogerald@chromium.org> Cr-Commit-Position: refs/heads/master@{#693183}
-
Mitsuru Oshima authored
This was added for WS, but no longer used. Bug: None Change-Id: I02704c8bf7c968a42c79a86191396e998c42662b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783361 Commit-Queue: Mitsuru Oshima <oshima@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#693182}
-
Tibor Goldschwendt authored
Follow up to crrev/c/1769526 after downstream changes landed. Change-Id: Icc37ffc2cbeacaab4fdac810d3df464641da2696 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1769529Reviewed-by:
Christopher Grant <cjgrant@chromium.org> Commit-Queue: Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#693181}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/2e9e9171..d40593f4 Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I1f47f58265ab918fe575d137e2e879542625bf79 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784583Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#693180}
-
chrome://flags/enterprisechrome://flags/deprecatedYann Dago authored
Bug: 982371 Change-Id: I6b6aaf1615cad18927df9523f12dac779b2375c0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779105Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Hector Carmona <hcarmona@chromium.org> Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Yann Dago <ydago@chromium.org> Cr-Commit-Position: refs/heads/master@{#693179}
-
Maksim Moskvitin authored
Once sync is disabled, we need to clear all Nigori data and reset model state. Since ModelTypeController for Nigori lives inside SyncEngineBackend we also need to explicitly disconnect and stop Nigori during DoShutdown(). Bug: 922900 Change-Id: Ide16fe4652d8bbdb5972c22110ae73492444e354 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784717 Commit-Queue: Maksim Moskvitin <mmoskvitin@google.com> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#693178}
-
Evan Shrubsole authored
The stat has recently been added to the RTCOutboundRtpStreamStats https://w3c.github.io/webrtc-stats/#dom-rtcoutboundrtpstreamstats-qualitylimitationresolutionchanges Bug: webrtc:10935 Change-Id: I97ba38b373996f4994a905ca7e9a5bb12ce13b57 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777681 Commit-Queue: Evan Shrubsole <eshr@google.com> Reviewed-by:
Henrik Boström <hbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#693177}
-
Francois Doray authored
TBR=antrim@chromium.org Bug: 992022 Change-Id: I9917c63be7e2ce20cc6f06c9eb13cf3148253dae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784625Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#693176}
-
Ricky Liang authored
This CL makes the GpuMemoryBuffer APIs and Mojo interface public to all platforms. Although GMB-based video capture is currently only possible on CrOS, the APIs can be made platform agnostic. Bug: 982201 Change-Id: Ib16e722416c8f7f634b7a4c33630f020e42a0184 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1739237Reviewed-by:
Christian Fremerey <chfremer@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Ricky Liang <jcliang@chromium.org> Cr-Commit-Position: refs/heads/master@{#693175}
-
Lan Wei authored
In order to send multiple events in one frame, we want to use "SendCommandAndIgnoreResponse" to dispatch events, but this approach may break some tests which do not wait for the action finish in the tests. We will use a flag which will only be called asynchronously in testdriver Action API, which we use promise to wait for the action finishing. Bug: 999750, 606367 Change-Id: I05c850667c3b9aac95c0d4c7ea210360a48ffa2e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783243Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: Lan Wei <lanwei@chromium.org> Cr-Commit-Position: refs/heads/master@{#693174}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/630b14f4812c..9cbdc04e23f6 Created with: gclient setdep -r src-internal@9cbdc04e23f6 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=jbudorick@google.com Bug: chromium:None Change-Id: I73b56bedd7895d0b80e2a3aef282ef57907959f1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783814Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#693173}
-
Kevin Bailey authored
A small UI change to indent pedal submatches along with tab switch suggestions (if enabled as submatches). Bug: 995935 Change-Id: I657ff010e54d2cbf80ccfc029fdc8c4643b56cc4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783524Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Commit-Queue: Kevin Bailey <krb@chromium.org> Cr-Commit-Position: refs/heads/master@{#693172}
-
Juanmi Huertas authored
Removing unnecessary ValidateStack that was failing as it was happening in midway during a reset stack process. Bug: 1000044 Change-Id: I8b646f60abea1d21d3d9925771d10c3330bc9c82 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1782501 Commit-Queue: Juanmi Huertas <juanmihd@chromium.org> Reviewed-by:
Fernando Serboncini <fserb@chromium.org> Cr-Commit-Position: refs/heads/master@{#693171}
-
Jakob Ivarsson authored
Bug: chromium:993325 Change-Id: I5e6c8cf1da24e1bb77981f9c0073b57ad2a56352 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1781424Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Jakob Ivarsson <jakobi@google.com> Cr-Commit-Position: refs/heads/master@{#693170}
-
Francois Doray authored
The test is flaky on Chrome OS. TBR=dgozman@chromium.org Bug: 1000654 Change-Id: I566552569619751d76284e3ccfdabf1f942c7167 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784623Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#693169}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/1f6f69209ec2..26a87516dc1b git log 1f6f69209ec2..26a87516dc1b --date=short --no-merges --format='%ad %ae %s' 2019-09-04 jmadill@chromium.org Remove overlay font hash from codegen. Created with: gclient setdep -r src/third_party/angle@26a87516dc1b If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/angle-chromium-autoroll Please CC jmadill@chromium.org,jmadill@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=jmadill@chromium.org,jmadill@google.com Bug: None Change-Id: I74e02537e98bbd5a41bf036b7ed35d67c55f0bdb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1783813Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#693168}
-
Jan Wilken Dörrie authored
TBR=ulan@chromium.org Bug: 999004 Change-Id: If8eca8c8b94f91e67765f71d25b24eb53204b599 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1782854Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#693167}
-
Jérôme Lebel authored
This patch removes dead code in MainController, ApplicationSettingsCommands and SettingsNavigationController, related to unified consent flag. This flag is now always true. Bug: 951313 Change-Id: I5a695d0b6c59ba24f1230b8f41b75a491ce6f226 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1784597 Auto-Submit: Jérôme Lebel <jlebel@chromium.org> Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: Jérôme Lebel <jlebel@chromium.org> Cr-Commit-Position: refs/heads/master@{#693166}
-