- 05 Dec, 2020 40 commits
-
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/30217950419d..e0dee01043d1 2020-12-05 michaelludwig@google.com Remove support for deprecated kDontClipToLayer_SaveLayerFlag 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 westont@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: westont@google.com Change-Id: I16fd8a6c1f61db885886cd33809840b7798f345e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575215Reviewed-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@{#833998}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/c859c0ac81bb..aafe855f7f51 2020-12-05 angle-autoroll@skia-public.iam.gserviceaccount.com Roll Chromium from 78187c02 to 6991410b (262 revisions) 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 ianelliott@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_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win-asan;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:linux-swangle-try-x64;luci.chromium.try:win-swangle-try-x86 Bug: None Tbr: ianelliott@google.com Change-Id: I2038dde0c841018bd907bf186ff90e638ca18046 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575434Reviewed-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@{#833997}
-
Yuta Hijikata authored
The change is mostly mechanical replacing defined(OS_CHROMEOS) with BUILDFLAG(IS_CHROMEOS_ASH) and GN variable is_chromeos with is_chromeos_ash with some special cases (For those cases please refer to http://go/lacros-macros). The patch is made in preparation to switching lacros build from target_os=linux to target_os=chromeos. This will prevent lacros from changing behaviour after the switch. Bug: 1052397 Change-Id: Iad750ef52b3a42cc0339e8e6fdb682c4cf397b16 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2550844Reviewed-by:
Alex Gough <ajgo@chromium.org> Reviewed-by:
Wei Li <weili@chromium.org> Commit-Queue: Yuta Hijikata <ythjkt@chromium.org> Cr-Commit-Position: refs/heads/master@{#833996}
-
Aleks Totic authored
Inside table-layout:fixed, columns always take precedence over cells. Updated wpt column widths test. Bug: 958381, 832323 Change-Id: I07e682d9e41218774889d9517a0e4d652bbecd68 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575724Reviewed-by:
David Grogan <dgrogan@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#833995}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/b97d85b7ca18..46ab28975e89 2020-12-05 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: I113ddb461fa1becf4f43f8b9ab3e23d237f3eb75 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2576099Reviewed-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@{#833994}
-
Sammie Quon authored
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}
-
Austin Eng authored
Bug: none Change-Id: I81a2d9a274f35b10f232ba060a6cd2e6b46673e3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574808Reviewed-by:
Kai Ninomiya <kainino@chromium.org> Commit-Queue: Kai Ninomiya <kainino@chromium.org> Cr-Commit-Position: refs/heads/master@{#833992}
-
Jimmy Gong authored
This disables the Silence Phone quick action in the Phone Hub UI if the user's phone is setup with a work profile. Bug: 1155244 Test: local, ash_unittest Change-Id: Ia29af3f40d69f00af74362015393d32730d2a58f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575344 Commit-Queue: Jimmy Gong <jimmyxgong@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#833991}
-
chrome-release-bot authored
# This is an automated release commit. # Do not revert without consulting chrome-pmo@google.com. NOAUTOREVERT=true TBR=srinivassista@chromium.org Change-Id: I858cb99880732091438d592e406e60c8d1a15dea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574789Reviewed-by:
Chrome Release Bot (LUCI) <chrome-official-brancher@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#833990}
-
Zach Trudo authored
Bug: chromium:1078512 Change-Id: I4bca5d23e43718994b96888a30c7b3be6c05a420 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2569118 Commit-Queue: Zach Trudo <zatrudo@google.com> Reviewed-by:
Sergey Poromov <poromov@chromium.org> Cr-Commit-Position: refs/heads/master@{#833989}
-
Daniel Cheng authored
Normally, this shouldn't happen, but there is a bug that causes the FrameLifecycle to be rewound from kDetached to kDetaching when a frame is detached twice (!!). Simply return false in this case, since any work gated on IsProvisional() should have already happened, so skipping it should be "safe". Bug: 838348, 1154141 Change-Id: Ic7a5e4014e3eb42b1f8881472b39743e718b8ff3 Fixed: 1148955 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575725 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Nate Chapin <japhet@chromium.org> Cr-Commit-Position: refs/heads/master@{#833988}
-
Ryan Sturm authored
This CL adds a few fields to the search prefetch resource request to make it more similar to a navigation request. Additionally, this adds capability for URLLoader throttles to defer (in this case cancel) or change headers on the prefetch request allowing things like variation headers to be added more similarly to how navigation requests have them added. Client hints CL: https://chromium-review.googlesource.com/c/chromium/src/+/2551671 Bug: 1138648 Change-Id: Ia868aa624b2f9f573a54432eb0fa62834eacd2f5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2552723Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Robert Ogden <robertogden@chromium.org> Commit-Queue: Ryan Sturm <ryansturm@chromium.org> Cr-Commit-Position: refs/heads/master@{#833987}
-
Aga Wronska authored
Playpen Content Packs feature for supervised users has never been launched.The code contains non-inclusive language and rather than fixing the language is gets well deserved removal. This change-list covers deletion of: * SupervisedUserWhitelistInstaller * SupervisedUserAllowlistService * Relevant test files It will be followed with the further cleanup in c/b/c/supervised_user as well as in Chrome Sync code. Bug: 1147260, 1151166 Change-Id: I938e2ba34bbe91013b54ea152b29fdff424253f1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2543804 Commit-Queue: Aga Wronska <agawronska@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Reviewed-by:
Bernhard Bauer <bauerb@chromium.org> Cr-Commit-Position: refs/heads/master@{#833986}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/084721205176..4bd742c8f043 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: chromium:1139446 Tbr: Change-Id: I0961095a73af96761d4b995da7584dfd2d577b0a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575568Reviewed-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@{#833985}
-
chromium-autoroll authored
Roll Chrome Linux PGO profile from chrome-linux-master-1607104719-553836ec892e604b847a609e48d12198e967747c.profdata to chrome-linux-master-1607126042-accdd94f2839e19c977142b92f1ccbe3b6368bd6.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: Ibb2d47ce45d4023b34cfd1bc933c37fc0a6f9bab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575980 Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#833984}
-
Sean Topping authored
Since Chromecast doesn't use Dawn, we can trim the binary size by excluding Dawn from compilation. Bug: internal b/174509097 Test: CQ Change-Id: Ibb32066ad3bb59852dfdb04c9ba5484c29283c8a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573637Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Sean Topping <seantopping@chromium.org> Cr-Commit-Position: refs/heads/master@{#833983}
-
kouhei authored
Before this CL, ShouldThrottleWebContents checked last committed URL if it was eligible for the policy. However, since the navigation which we would like to apply policy hasn't committed yet, this was checking the WebContent's URL before navigation. This CL changes it to `GetURL()` so that it would check the scheme of the URL of the navigation target page. BUG=1082920 Change-Id: I1aed97316e985b62be581e6f6a8d5447c2fc28f5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573851 Commit-Queue: Kouhei Ueno <kouhei@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#833982}
-
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-aemu-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 Tbr: chrome-fuchsia-gardener@grotations.appspotmail.com Change-Id: I8aebdce02b528de2fafa3bb459b94a4bbccfe5af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575567Reviewed-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@{#833981}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1607082643-c2f5265b374c0786e9c504f581789ab6e6bb2b7f.profdata to chrome-win64-master-1607115559-44871aa53f914203e8d0d24a90c015a255200321.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: I94404ea277f2f225cac8f41689a879b772651a91 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575819Reviewed-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@{#833980}
-
chromium-autoroll authored
Roll Chrome Mac PGO profile from chrome-mac-master-1607104719-e1d1a8dd7fb3b6aba7965596c29afef7497a651e.profdata to chrome-mac-master-1607126042-3a5b481c1c794ae044b96bf2fc778aeb692519cf.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: I0cde39d53cf2aa3e1f84b6322d01847f417779c4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575804Reviewed-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@{#833979}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/ae95077db60b..30217950419d 2020-12-04 michaelludwig@google.com Improve CanvasState cross-library tests 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 westont@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: westont@google.com Change-Id: I6af390c85750d88549985d452d2c77736d0f1ca5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575822Reviewed-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@{#833978}
-
Ryan Hansberry authored
If an incoming or outgoing Bluetooth connection has been initiated by a Nearby Connections client, such as Nearby Share, do not display the "Device has paired and connected..." notification. Making generic Bluetooth UI logic (BluetoothNotificationController) aware of the inner workings of Nearby is not ideal, but is the quickest solution we have available before launch. We will clean up this behavior leak in crbug.com/1155669. Bug: 1155668 Change-Id: Ib06656dbca9ae538b36ebf0b54ec192d88d9f466 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2572804 Commit-Queue: Ryan Hansberry <hansberry@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#833977}
-
Meilin Wang authored
Added a series of histograms under name "PhoneHub.TaskCompletion.{MessageType}.Result" to track results of each type of request messages. "RequestAttempted" is logged when a message was sent, and "ResponseReceived" is logged when a response has came back Bug: 1150634 Change-Id: I6e57c2a071536a09c8260d89d1e6dc551a7fe57e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568556 Commit-Queue: Meilin Wang <meilinw@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#833976}
-
Yi Xie authored
Currently there is a delay of 15 min - 3 hr, which is way too long for integration test. By adding this flag we can write Tast test to check if log upload is working properly. BUG=b:174803045 TEST=None. Will be tested by a Tast test later. Change-Id: I65447c51519d9758ee17472432d9775e5505a835 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573896 Commit-Queue: Yi Xie <yixie@chromium.org> Reviewed-by:
Sergey Poromov <poromov@chromium.org> Cr-Commit-Position: refs/heads/master@{#833975}
-
danakj authored
These bitmaps are safer for transport from untrustworthy sources since all bitmaps should be in N32 format and the browser can make bad assumptions as a result. R=dcheng@chromium.org Bug: 1144462 Change-Id: Ib72a5200cce720dc42af6388d0137f5b7b1d5bb9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2572701Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Commit-Queue: Bo <boliu@chromium.org> Auto-Submit: danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#833974}
-
Sergey Ulanov authored
AddEventListenerOptions-signal.any is failing on Linux Leak bots TBR=smcgruer@chromium.org Bug: 1155771 Change-Id: I6ed11b1f9ad413331a71fac1e85017788eae399b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575901Reviewed-by:
Stephen McGruer <smcgruer@chromium.org> Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#833973}
-
Michael Hansen authored
When Nearby Share is not yet set up, we'll show a "Set Up" button on the settings row instead of the toggle. Screenshot: https://screenshot.googleplex.com/4WXi2TR865p4jbm.png Fixed: 1154767 Change-Id: I919aad75bcea98963ca75b21fbaf938a7e132dd9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573856 Commit-Queue: Michael Hansen <hansenmichael@google.com> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#833972}
-
Gavin Mak authored
Generate DIR_METADATA files and remove metadata from OWNERS files for directories under web_tests/http/. Bug: 1113033 Change-Id: I7be395b104059d370085c1c03874fcf795a9b496 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2572881 Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Auto-Submit: Gavin Mak <gavinmak@google.com> Cr-Commit-Position: refs/heads/master@{#833971}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/aa250cf881de..8295f4267ab3 2020-12-04 vapier@chromium.org licensing: add ISC as notice-required 2020-12-04 vapier@chromium.org cros_portage_upgrade: make it less chatty 2020-12-04 chrome-bot@chromium.org Update config settings by config-updater. 2020-12-03 ahassani@chromium.org Add Vyshu as one of the AU owners 2020-12-03 kimjae@chromium.org Add per-file directive to the OWNERS.au file 2020-12-03 ahassani@chromium.org xbuddy: Don't raise an error if it doesn't find any local image 2020-12-03 engeg@google.com payload_unittest: disable enum test 2020-12-03 vapier@chromium.org {git,patch}_unittest: fix running with newer repo 2020-12-02 engeg@google.com payload_unittest: fix test that used new alias value 2020-12-02 navil@google.com paygen: fix autotestpayloads unit test. 2020-12-02 lamontjones@chromium.org cbuildbot: migrate legacy builders to RBE_CHROMEOS 2020-12-02 chrome-bot@chromium.org Update config settings by config-updater. 2020-12-02 chinglinyu@chromium.org usergroup_baseline: Add group traced-producer and traced-consumer 2020-12-02 chrome-bot@chromium.org Update config settings by config-updater. 2020-12-02 mikenichols@chromium.org chromeos_config: Set up R86 for LTS Builder 2020-12-01 pprabhu@chromium.org Update API bindings 2020-12-01 pprabhu@chromium.org Regenerate Build API bindings 2020-12-01 vbendeb@google.com Update generated protobufs If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/chromite-chromium-autoroll Please CC chrome-os-gardeners@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:chromeos-betty-pi-arc-chrome;luci.chromium.try:chromeos-kevin-rel Tbr: chrome-os-gardeners@google.com Change-Id: Ic6bc3d4699498ee4e5373d6d0286a5e226d8cee7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574423Reviewed-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@{#833970}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/f42409e60211..c859c0ac81bb 2020-12-04 timvp@google.com Batch replace std::unordered_map with angle::HashMap in src/ 2020-12-04 syoussefi@chromium.org Vulkan: Fix transform feedback spanning multiple render passes 2020-12-04 syoussefi@chromium.org Vulkan: Support geometry/tessellation primitive topologies 2020-12-04 sugoi@google.com Suppress memory leaks detected by LSAN 2020-12-04 paulthomson@google.com Capture: Disable GL_CHROMIUM_bind_uniform_location 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 ianelliott@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_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win-asan;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:linux-swangle-try-x64;luci.chromium.try:win-swangle-try-x86 Bug: chromium:972686 Tbr: ianelliott@google.com Change-Id: I36da6c3156d12f5ae93e06d068177b6b7974602f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575802Reviewed-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@{#833969}
-
Daniel Cheng authored
This reverts commit 2b2acd1c. Reason for revert: Root cause has been determined. Original change's description: > CHECKs to debug why LocalFrame is in an inconsistent detached state. > > A number of Android crashes have a non-detached LocalFrame but GetPage() > returns null. This CL adds a few CHECKs in IsProvisional(), which is one > place where this crash has been observed. It also adds a few CHECKs in > the FrameLifecycle state machine to make sure state isn't somehow being > rewound. > > Bug: 1154141 > Change-Id: I5b767ed3b7476a47a88831e40de1fceebb73e557 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567633 > Commit-Queue: Daniel Cheng <dcheng@chromium.org> > Reviewed-by: Fergal Daly <fergal@chromium.org> > Cr-Commit-Position: refs/heads/master@{#832617} TBR=dcheng@chromium.org,fergal@chromium.org,chromium-scoped@luci-project-accounts.iam.gserviceaccount.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 1154141 Fixed: 1154583, 1154586, 1154676, 1154935 Change-Id: I53bc1544082baf6c91f99c18eb022f15c523ba5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575997Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#833968}
-
Nate Fischer authored
No change to logic. This inlines BuildInfo.isAtLeast{Q,R} and BuildInfo.targetsAtLeast{Q,R} (and their C++ equivalents) in /media. The methods themselves will be removed in a follow-up CL once all call sites have been removed. This CL was uploaded by git cl split. R=chcunningham@chromium.org Bug: 1106920 Test: autoninja -C out/Default monochrome_public_apk Change-Id: I50025fc53dd66d4c747b623a6c4fa8b9a9c0c068 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575332 Auto-Submit: Nate Fischer <ntfschr@chromium.org> Reviewed-by:
Chrome Cunningham <chcunningham@chromium.org> Commit-Queue: Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#833967}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/2008dd6e00cd..084721205176 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 sergeyu@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-chromeos-chrome Bug: chromium:1056387 Tbr: sergeyu@google.com Change-Id: Ic110dc65bb73708e0f55603ef669e3b5d064a111 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575823Reviewed-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@{#833966}
-
Josiah K authored
AX-Relnotes: N/A Fixed: 1155744 Change-Id: Ib0c63e0518b8f7fcfc5f467c76dd95d34430acf4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2574785 Auto-Submit: Josiah Krutz <josiahk@google.com> Reviewed-by:
Jimmy Gong <jimmyxgong@chromium.org> Commit-Queue: Josiah Krutz <josiahk@google.com> Cr-Commit-Position: refs/heads/master@{#833965}
-
Sergey Ulanov authored
TBR=davidben@chromium.org Bug: 1057921 Change-Id: I82cdabeecb65feb6283ed6c2028af18bdec727e1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575893 Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Auto-Submit: Sergey Ulanov <sergeyu@chromium.org> Reviewed-by:
David Van Cleve <davidvc@chromium.org> Cr-Commit-Position: refs/heads/master@{#833964}
-
Jeffrey Kardatzke authored
Oversight, forgot to change this in the utils as well. BUG=b:153111783 TEST=DCHECK passes w/ protected content Change-Id: Id84b31888833ef9d8eff4d6e599cb651767c2dfd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575517 Commit-Queue: Jeffrey Kardatzke <jkardatzke@google.com> Commit-Queue: Miguel Casas <mcasas@chromium.org> Auto-Submit: Jeffrey Kardatzke <jkardatzke@google.com> Reviewed-by:
Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#833963}
-
Aaron Krajeski authored
This is step one of a multistep process to move the paint_op_buffer from SkMatrix->SkM44. The steps are 1. Add setMatrix(SkM44) <- this step 2. Add concat(SkM44) 2a. Add helper functions to SkM44 to allow it to do stuff like this: https://source.chromium.org/chromium/chromium/src/+/master:cc/paint/display_item_list.cc;l=412?q=display_item_list&sq=package:chromium&ct=os 3. Change setMatrix(SkMatrix) to use the SkM44 function 4. Change concat(SkMatrix) to use the SkM44 function 5. Remove the early-outs for checking identity in the ::Serialize functions and see if they have perf impact. SkCanvas now supports this https://skia-review.googlesource.com/c/skia/+/338596 It's necessary for perspective transforms https://bugs.chromium.org/p/chromium/issues/detail?id=1140535 It needs to be serializable due to the record paint canvas. Bug: 1153330, 1140535, 1155544 Change-Id: I0920b848386e003b6a18e9332a4f400484b68349 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2562783Reviewed-by:
Joe Mason <joenotcharles@chromium.org> Reviewed-by:
Khushal <khushalsagar@chromium.org> Reviewed-by:
Mike Reed <reed@google.com> Reviewed-by:
Juanmi Huertas <juanmihd@chromium.org> Commit-Queue: Aaron Krajeski <aaronhk@chromium.org> Cr-Commit-Position: refs/heads/master@{#833962}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/9d48f8afe510..b97d85b7ca18 2020-12-04 chrche@microsoft.com [Loc] Migrate protocol monitor tool to localization V2 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: chromium:1136655 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I513e54ff6b0aaae78801c8284be2db9f952212d7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2575817Reviewed-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@{#833961}
-
Phillis Tang authored
Update desktop PWA install icon's In-Product Help to show the app's name in display text. Bug: 1149638 Change-Id: I1f2a7c201e2d2fda4533dcecb2a5f389b6d38f72 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2572744 Commit-Queue: Phillis Tang <phillis@chromium.org> Reviewed-by:
Collin Baker <collinbaker@chromium.org> Reviewed-by:
Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/master@{#833960}
-
Xianzhu Wang authored
Previously we propagated the flag across frame boundary when setting the flag. If this happened when the frame was not throttled, then it was throttled, a full document lifecycle update would clear the ancestor flags in the owner frame, leaving the flag in the frame orphaned. Now propagate the flag across frame boundary for non-throttled frame just before paint regardless of whether the frame was throttled or not, to ensure the flag always correctly propagated to ancestors for paint. Bug: 1155220 Change-Id: Ic351e835d103522ed2b36332f2b4095215297389 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2573341 Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by:
Stefan Zager <szager@chromium.org> Cr-Commit-Position: refs/heads/master@{#833959}
-