- 07 Dec, 2020 12 commits
-
-
chromium-autoroll authored
Roll Chrome Linux PGO profile from chrome-linux-master-1607274992-2974a9a4282254902cff6a65cece32eb62bb49c4.profdata to chrome-linux-master-1607296838-726b11db44d1999a156b631ebee4ad43068bfed6.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-linux-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: Ie5d52a7165d7d19a76fbd0ee1a3b0db51b403966 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576578Reviewed-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@{#834102}
-
Rakina Zata Amni authored
The RFH accessed in a DCHECK might be null if the navigation never reached the ReadyToCommitNavigation state. This CL updates the check added in https://chromium-review.googlesource.com/c/chromium/src/+/2569637 to be clearer. Bug: 1133115 Change-Id: I9e4fcc6f239a6e69e855f7abd56b74a3b2cad0cb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574118Reviewed-by:
James MacLean <wjmaclean@chromium.org> Commit-Queue: Rakina Zata Amni <rakina@chromium.org> Cr-Commit-Position: refs/heads/master@{#834101}
-
Alexey Baskakov authored
This reverts commit 9771027b. Reason for revert: Breaks ash_unittests on ASAN bots (use after free) https://ci.chromium.org/ui/p/chromium/builders/ci/Linux%20Chromium%20OS%20ASan%20LSan%20Tests%20(1)/39004/overview Original change's description: > desks: Fix crash when touchpad swipe with external monitors. > > The crash was because a new screenshot is requested when the current > screenshot is about to get scrolled out of bounds. It was using a fixed > number threshold, meaning displays that are not the same size could > get out of sync easily, leading to a CHECK failure. > > This CL addresses that by requesting screenshot on all displays if even > one of them needs one. Another approach would be change the spacing and > threshold to be based on the display width instead of fixed number, but > that could be prone to roundoff error which may cause a similar issue. > > Also noticed visible desk metric was double counting when there are > multiple displays. Added a TODO for that one as it is lower priority. > > Bug: 1154868 > Test: manual, added regression test > Change-Id: I48f5ef62d3284b710f44a2808f75c95686bc9b3d > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2570551 > Commit-Queue: Sammie Quon <sammiequon@chromium.org> > Reviewed-by: Ahmed Fakhry <afakhry@chromium.org> > Cr-Commit-Position: refs/heads/master@{#833993} TBR=afakhry@chromium.org,sammiequon@chromium.org,chromium-scoped@luci-project-accounts.iam.gserviceaccount.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 1154868 Change-Id: I23cf043d8bc4ae5c9ed8531429b9ffcee43224e4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575778Reviewed-by:
Alexey Baskakov <loyso@chromium.org> Commit-Queue: Alexey Baskakov <loyso@chromium.org> Cr-Commit-Position: refs/heads/master@{#834100}
-
chromium-autoroll authored
Roll Chrome Mac PGO profile from chrome-mac-master-1607274992-5f60b37d32a0de70e3a3f8971d87b0de74f1a94e.profdata to chrome-mac-master-1607296838-983fc71424be447753e5e41dabd44a4fead37886.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-mac-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:mac-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I1cbac97a3ae2431397dab042982355edaf3bc728 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576757Reviewed-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@{#834099}
-
Jie Jiang authored
The new added metric shows the time diff for detecting an L2 connectivity issue between the two link monitors. CrOS patch to emit the metric: https://crrev.com/c/2439961 BUG=b:162194516 TEST=See the TEST line in CrOS patch Change-Id: I9b1cb421f2d0c0accd3e151d006cad254d4289a9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2462753 Commit-Queue: Jie Jiang <jiejiang@chromium.org> Reviewed-by:
Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Hugo Benichi <hugobenichi@google.com> Cr-Commit-Position: refs/heads/master@{#834098}
-
Alexey Baskakov authored
This reverts commit 8144dae3. Reason for revert: breaks unit tests in this build: https://ci.chromium.org/ui/p/chrome/builders/ci/linux-chromeos-chrome/10489/overview Original change's description: > Quick Answers: Add page size options for Search request > > Since we only use the first result from search request, set the page > size to 1 to reduce the delay. > > Bug: b/173239982 > Test: None > Change-Id: Ib2abd92e23b430b837f0556c31bcc0d17873256e > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574072 > Reviewed-by: Xiyuan Xia <xiyuan@chromium.org> > Reviewed-by: Jeroen Dhollander <jeroendh@chromium.org> > Reviewed-by: Xiaohui Chen <xiaohuic@chromium.org> > Commit-Queue: Yue Li <updowndota@chromium.org> > Cr-Commit-Position: refs/heads/master@{#833940} TBR=xiyuan@chromium.org,xiaohuic@chromium.org,updowndota@chromium.org,chromium-scoped@luci-project-accounts.iam.gserviceaccount.com,jeroendh@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: b/173239982 Change-Id: I4348e98fcc27160c01ecf4a9c048844861f5c15c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576659Reviewed-by:
Alexey Baskakov <loyso@chromium.org> Commit-Queue: Alexey Baskakov <loyso@chromium.org> Cr-Commit-Position: refs/heads/master@{#834097}
-
Takuto Ikuta authored
This is tested with $ ./tools/infra/named-cache-clobber.py --pool luci.flex.try --cache \ builder_92e38e4683b296a198f832d7beb78c3cceedbbd43e46b55234be1c386f580943_v2 The following bots will be clobbered: luci-flex-try-xenial-11-ebhi luci-flex-try-xenial-12-kffs luci-flex-try-xenial-15-pkbk Proceed? [Y/n] To collect results use: swarming collect -server https://chromium-swarm.appspot.com -output-dir out -task-summary-json summary.json 5045ab8f8a419b10 You can also see the task status in https://chromium-swarm.appspot.com/task?id=5045ab8f8a419b10 To collect results use: swarming collect -server https://chromium-swarm.appspot.com -output-dir out -task-summary-json summary.json 5045ab92f48b1710 You can also see the task status in https://chromium-swarm.appspot.com/task?id=5045ab92f48b1710 To collect results use: swarming collect -server https://chromium-swarm.appspot.com -output-dir out -task-summary-json summary.json 5045ab9759b16b10 You can also see the task status in https://chromium-swarm.appspot.com/task?id=5045ab9759b16b10 Bug: 1142713 Change-Id: I5be98fe520c592bb59b3f453e544253c517acf7b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573561 Auto-Submit: Takuto Ikuta <tikuta@chromium.org> Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Reviewed-by:
Garrett Beaty <gbeaty@chromium.org> Cr-Commit-Position: refs/heads/master@{#834096}
-
chromium-internal-autoroll authored
Release_Notes: http://go/media_app-x20/relnotes/Main/media_app_202012060600_RC00.html https://chrome-infra-packages.appspot.com/p/chromeos_internal/apps/media_app/app/+/1JjkFXZ1s86iBnYJ0jMS5E5alylmWh3-mz4jCYL3szkC If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/media-app-chromium-autoroll Please CC media-app@grotations.appspotmail.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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: b/138543581,b/138961540,b/147599135,b/157950476,b/168064736,b/168067375,b/168068647,b/173978830,b/174442723,b/174536897,b/174603791,b/174637068 Tbr: media-app@grotations.appspotmail.com Change-Id: Ic2cf5cc3e33cfbdb5b28b23eb1a81a4e0a0b844f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576846Reviewed-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@{#834095}
-
Majid Valipour authored
You should be able to use "--enable-features=WebID" now. Same for webotp backend flag. Change-Id: Ibf3c71bff82f716989af3e01ce1cfe394c785fab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576008 Auto-Submit: Majid Valipour <majidvp@chromium.org> Commit-Queue: Kentaro Hara <haraken@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#834094}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1607274992-f909d4cd746e4743e9b9142bc43d00c747f755ba.profdata to chrome-win64-master-1607285417-319fac9cd61d6e3a5b6b6bda38f6eeeb3d5cb0d0.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win64-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:win64-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: Ia7548640a1678810b4f6863d08ddac3648164aee Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576848Reviewed-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@{#834093}
-
Bao-Duy Tran authored
Should've been removed together in https://crrev.com/c/2437720 but was accidentally missed out... Bug: 1134465 Change-Id: I7d338c87cd1081fc1b3ae5629b2a4db5ce4422f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568339 Auto-Submit: Bao-Duy Tran <tranbaoduy@chromium.org> Commit-Queue: Keith Lee <keithlee@chromium.org> Reviewed-by:
Keith Lee <keithlee@chromium.org> Cr-Commit-Position: refs/heads/master@{#834092}
-
Thomas Guilbert authored
This CL converts the paths that read and decompress thumbnails to use base::OnceCallback and base::BindOnce instead of the generic base::Bind and base::Callback. It also notably changes a base::RepeatingCallback that seems to only be called once into a OnceCallback. Bug: 1152271 Change-Id: Ibc9cb6004c6a66c27225ea8ecda210f59f288f8b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2572746Reviewed-by:
David Trainor <dtrainor@chromium.org> Commit-Queue: Thomas Guilbert <tguilbert@chromium.org> Cr-Commit-Position: refs/heads/master@{#834091}
-
- 06 Dec, 2020 28 commits
-
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/edb22ec49866..d67df01dcf3a 2020-12-06 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update SKP version 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 jmbetancourt@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/+doc/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 Cq-Do-Not-Cancel-Tryjobs: true Bug: None Tbr: jmbetancourt@google.com Change-Id: I00d5f5586acce4f2dcb63aa72eebc66ee486fc24 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576844Reviewed-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@{#834090}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/11b84a217824..731e67da3620 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 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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: None Tbr: Change-Id: I3364c13c0e82b2a531f8bfe16f85c0347a6fa2a1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576845Reviewed-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@{#834089}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/f8bc30f60549..393159147685 2020-12-06 sprang@webrtc.org Reland "Adds experimental libvpx VP9 speed settings." If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/webrtc-chromium-autoroll Please CC webrtc-chromium-sheriffs-robots@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/+doc/master/autoroll/README.md Bug: None Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: Iefb7471f283eff4d35eaa9589ee8029bfb544647 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576843Reviewed-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@{#834088}
-
Eric Willigers authored
SharesheetClientBrowserTest::ShareTwoFiles uses script to share a file named '../sample.mp4'. We verify that this becomes a filename beginning with 'share', with no directory escape. Change-Id: I731afa6e7e0c071b83eac8b461d382acad6cac93 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567869 Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Reviewed-by:
Alan Cutter <alancutter@chromium.org> Cr-Commit-Position: refs/heads/master@{#834087}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC chrome-fuchsia-gardener@grotations.appspotmail.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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-deterministic-dbg;luci.chromium.try:fuchsia-x64-cast Tbr: chrome-fuchsia-gardener@grotations.appspotmail.com Change-Id: I704e80def7a61d29d18a041f845e25f6514c1136 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576776Reviewed-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@{#834086}
-
Kyle Horimoto authored
Notification access is not allowed for users using a Work Profile. This CL updates NotificationAccessManager to support this case, and it updates PhoneStatusProcessor to mark access as prohibited if a Work Profile is active. This CL also propagates this value to settings so that the notifications settings UI can be disabled in this case. Bug: 1155151, 1106937 Change-Id: I76cc99e17eca333f695c4786b387e5e419a7350a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573681 Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Jimmy Gong <jimmyxgong@chromium.org> Cr-Commit-Position: refs/heads/master@{#834085}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1607241930-f5b83cf2f1c9491df564851856be44747b1ca52b.profdata to chrome-win64-master-1607274992-f909d4cd746e4743e9b9142bc43d00c747f755ba.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win64-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:win64-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: Ieaa2c9d70c6544a03b0be6585ede949fc2d0512b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576782Reviewed-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@{#834084}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/be1d125a8b06..11b84a217824 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 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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: None Tbr: Change-Id: Iac974a9f94f79af90ec7d152f8697573c4c6b1bd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576838Reviewed-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@{#834083}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/6c80aebd0036..f8bc30f60549 2020-12-06 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision d1dd90b2..a04842f6 (833763:833885) 2020-12-04 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 663e2bfe..d1dd90b2 (833628:833763) 2020-12-04 crodbro@webrtc.org Cleanup obsolete filtering of small packets in delay based estimator. 2020-12-04 sprang@webrtc.org Cleans up WebRTC-Pacer-SmallFirstProbePacket flag 2020-12-04 phancke@nvidia.com dump raw rtp packets in text2pcap format If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/webrtc-chromium-autoroll Please CC webrtc-chromium-sheriffs-robots@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/+doc/master/autoroll/README.md Bug: None Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: Iad4e635799c11689364e383fc1c6353cbac20449 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576836Reviewed-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@{#834082}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/f326e4faef66..edb22ec49866 2020-12-06 reed@google.com work on better SkPath::dump 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 jmbetancourt@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/+doc/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 Cq-Do-Not-Cancel-Tryjobs: true Bug: None Tbr: jmbetancourt@google.com Change-Id: I2b4daf2fec3fb07017e633a1a2d400bd2a5c67d6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576785Reviewed-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@{#834081}
-
Internal Frameworks Autoroller authored
TBR=bling-team@google.com Change-Id: I0f1e9236318c9ff3240c75e4f9ca8aa02ba6cfbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576009Reviewed-by:
Internal Frameworks Autoroller <bling-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Internal Frameworks Autoroller <bling-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#834080}
-
chromium-autoroll authored
Roll Chrome Linux PGO profile from chrome-linux-master-1607252866-c2fa6eaa51da4882fc07c7786de461457a327487.profdata to chrome-linux-master-1607274992-2974a9a4282254902cff6a65cece32eb62bb49c4.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-linux-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I85a2c4ebfa762092d1ae90d902ad546872ae8c5e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576781Reviewed-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@{#834079}
-
chromium-autoroll authored
Roll Chrome Mac PGO profile from chrome-mac-master-1607252866-f3ab87149644d613d134273463ed0ee5ad40f575.profdata to chrome-mac-master-1607274992-5f60b37d32a0de70e3a3f8971d87b0de74f1a94e.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-mac-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:mac-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I72d4fb533b40320952007ac30ddbe9a0564ea187 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576778Reviewed-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@{#834078}
-
dpapad authored
Fixing issues where: - "No sites added" was announced twice. - An invisible and empty paper-tooltip was in the navigation order. Bug: 1117554 Change-Id: I9b35c149cb33178cb6c39ba1d314cde17e6bf644 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574274Reviewed-by:
John Lee <johntlee@chromium.org> Commit-Queue: dpapad <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#834077}
-
chromium-autoroll authored
Roll Chrome Win32 PGO profile from chrome-win32-master-1607212443-b021db89e10a02f74885119e07b3d9dbdefb87e0.profdata to chrome-win32-master-1607252866-d41b621d05e6450c8f7df54cb40144efff641518.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win32-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:win-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I23206d9ac922a5dbca736aeb9707bf05d8a6ab44 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575970Reviewed-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@{#834076}
-
Stephan Hartmann authored
Bug: None Change-Id: Ieebcc426ec76f3f85a52c2dd3dcee17b07d1f02b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576237Reviewed-by:
Peter Kasting <pkasting@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#834075}
-
chromium-autoroll authored
Roll Chrome Mac PGO profile from chrome-mac-master-1607232483-071fd12821262d4c25bdcd499c31e5f881f04210.profdata to chrome-mac-master-1607252866-f3ab87149644d613d134273463ed0ee5ad40f575.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-mac-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:mac-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I71079c7722c7651d2834b386bd99873fe986e077 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575965Reviewed-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@{#834074}
-
chromium-autoroll authored
Roll Chrome Linux PGO profile from chrome-linux-master-1607232483-c18abedeb0abde96ff287a6f9fd1abea5eaa8824.profdata to chrome-linux-master-1607252866-c2fa6eaa51da4882fc07c7786de461457a327487.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-linux-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I328756284396e334fe4d6819ce3467e7c446d262 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575966Reviewed-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@{#834073}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/50956df0e2ae..48576261660b 2020-12-06 devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update DevTools DEPS. If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.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/+doc/master/autoroll/README.md Bug: None Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I977d7dc1788f2a440be46236707109935fd9c0d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575943Reviewed-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@{#834072}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1607232483-80677c1fa070f106edefa1b1dbd737ce25d58ee3.profdata to chrome-win64-master-1607241930-f5b83cf2f1c9491df564851856be44747b1ca52b.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win64-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:win64-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: Ie9f01754f135f96d2be2fc0d4fe4c1e57e1c4ea0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576677Reviewed-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@{#834071}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC chrome-fuchsia-gardener@grotations.appspotmail.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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-deterministic-dbg;luci.chromium.try:fuchsia-x64-cast Tbr: chrome-fuchsia-gardener@grotations.appspotmail.com Change-Id: Ia7ae7d30e1182d2d16a218e1e7aae49c8cd33a7c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576572Reviewed-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@{#834070}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/c3cb170d73a2..be1d125a8b06 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 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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: None Tbr: Change-Id: I40ebfc008733c451ef68df3f1690cd4bd0a2ad81 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576574Reviewed-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@{#834069}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1607222370-dd879f525bd567c07af1429ad819ecf89b156328.profdata to chrome-win64-master-1607232483-80677c1fa070f106edefa1b1dbd737ce25d58ee3.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win64-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:win64-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: Ie5209e07d00a0a70059078fc59a899e3bef01912 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576513Reviewed-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@{#834068}
-
Internal Frameworks Autoroller authored
TBR=bling-team@google.com Change-Id: I50973f62a7db449d11af017de40d5f0f0f59cf87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576616Reviewed-by:
Internal Frameworks Autoroller <bling-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Internal Frameworks Autoroller <bling-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#834067}
-
Eric Willigers authored
We write files to MyFiles/.WebShare Design doc: https://docs.google.com/document/d/1EjpgseTbBhT9ogQv6HV6sLlBl4hpb2viOcmPtFJorMQ/edit?usp=sharing The previous location used for Web Share files for Chrome OS worked with Ozone (Chrome on Linux), but not on Chromebooks or VMs. Bug: 1151773 Change-Id: Ia68f9e6c8c38fde50a278c9bec7b01eb8f8feb9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2563011 Auto-Submit: Eric Willigers <ericwilligers@chromium.org> Reviewed-by:
Luciano Pacheco <lucmult@chromium.org> Reviewed-by:
Josh Simmons <simmonsjosh@google.com> Reviewed-by:
Sergei Datsenko <dats@chromium.org> Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Cr-Commit-Position: refs/heads/master@{#834066}
-
chromium-autoroll authored
Roll Chrome Mac PGO profile from chrome-mac-master-1607212443-566f174f3f06644fe189c59ee7d3f2305744b3d5.profdata to chrome-mac-master-1607232483-071fd12821262d4c25bdcd499c31e5f881f04210.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-mac-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:mac-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: If734d4f3ce257f13b63f7d424d4b03ed18a5f8f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576508Reviewed-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@{#834065}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1607212443-2da7b3f6840c7ce2903e99dd840e51f484764ec7.profdata to chrome-win64-master-1607222370-dd879f525bd567c07af1429ad819ecf89b156328.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win64-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:win64-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: Ib2fe0d44f60f6ea610b09060ecd129c6d2babf45 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576503Reviewed-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@{#834064}
-
chromium-autoroll authored
Roll Chrome Linux PGO profile from chrome-linux-master-1607212443-4f55413e7f0a00392e94ff2d89d38e0836b7dc85.profdata to chrome-linux-master-1607232483-c18abedeb0abde96ff287a6f9fd1abea5eaa8824.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-linux-chromium Please CC pgo-profile-sheriffs@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/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I4b3a49abf09c622ec6aa619eb499f4273f67de7c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576509Reviewed-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@{#834063}
-