- 21 Apr, 2020 40 commits
-
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/f9cd85317277..e30b9d80933d git log f9cd85317277..e30b9d80933d --date=short --first-parent --format='%ad %ae %s' 2020-04-21 treehugger-gerrit@google.com Merge "tp: add core and core_type breakdowns per process in CPU metric" Created with: gclient setdep -r src/third_party/perfetto@e30b9d80933d If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@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 Bug: None Tbr: perfetto-bugs@google.com Change-Id: I9b805efa0ba48f4d06be546516fa31dc338f25ab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159265Reviewed-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@{#760948}
-
Olivier Robin authored
This will allow to add sections dependant on gn flags and ensure that flags and blank lines stay at the end. Bug: 1017434 Change-Id: Ia982cb84f4092631ba6dd7c0b14063290db773fb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159243 Commit-Queue: Olivier Robin <olivierrobin@chromium.org> Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Auto-Submit: Olivier Robin <olivierrobin@chromium.org> Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Cr-Commit-Position: refs/heads/master@{#760947}
-
Dominique Fauteux-Chapleau authored
This is done by moving the code that terminates the request when the file should not to be scanned right after the file has been opened to read its content and compute its hash. This means unit tests with fake file names now need to use "real" files since Chrome will attempt to open them. Bug: 1061461 Change-Id: Ifa045f91c69f4501dd14b2888a82e622b6d5622f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2151334Reviewed-by:
Daniel Rubery <drubery@chromium.org> Commit-Queue: Dominique Fauteux-Chapleau <domfc@chromium.org> Cr-Commit-Position: refs/heads/master@{#760946}
-
Robbie Gibson authored
The underlying issue is that the find_bar_mediator was observing navigation events and closing FIP when a navigation occurs. As the state for "show FIP" is a tab-level state, the observation should occur in the tab helper. Now, the tab helper observes the navigation in its own webstate. Alerting the UI that Find In Page has stopped is done through the FindInPageResponseDelegate. (This used to be the coordinator, but should really be the mediator, so that has changed too.) This is hooked up to the active mediator only when the UI is active. From the bug, the same issue occurs with Text Zoom, but Text Zoom is closed automatically on switching tabs, so that behavior was kept. Fixed: 1067603 Change-Id: Ic5b1fb61142ab3deadc8ef792642e880cf23ebea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2157226 Commit-Queue: Robbie Gibson <rkgibson@google.com> Reviewed-by:
Mark Cogan <marq@chromium.org> Cr-Commit-Position: refs/heads/master@{#760945}
-
Navid Zolghadr authored
Change-Id: I9e2645c7342e1f75874bed21d1f9c46624e207de Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2150768 Commit-Queue: Navid Zolghadr <nzolghadr@chromium.org> Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/master@{#760944}
-
Charlie Harrison authored
This CL does a few things: 1. Currently, both the StoragePartition ClearData and the BrowsingDataRemover use Origins internally. However, the BrowsingDataRemover exposes a generic matching interface that only accepts GURLs. This leads to lots of wasteful conversions. For every internal DB check to clear data for an origin in StoragePartition, we need to convert the origin into a GURL, and then back into an Origin again. Both of those operations incur expensive allocations because Origin and GURL use a different internal representation. This CL adds a browsing data filter that accepts Origins, in addition to GURLs, and uses it in the StoragePartition. 2. GetDomainAndRegistry has no variants that accept an Origin, and the one that accepts a host does an expensive canonicalization step (more allocations). This CL adds a new method to get the domain and registry from an Origin which will have already canonicalized its host internally (similar to the GURL variant). 3. Minor cleanups in DoesOriginMatchMaskAndPredicate to re-order conditionals to avoid expensive Origin::GetURL computations. This CL has no intended behavior changes. Bug: None Change-Id: I7964b896479aab2bf01e8247e562bd55dff18927 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2151840Reviewed-by:
Christian Dullweber <dullweber@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Commit-Queue: Charlie Harrison <csharrison@chromium.org> Cr-Commit-Position: refs/heads/master@{#760943}
-
Ryan Sturm authored
This removes the HTTP DRP PLM while leaving LPR untouched. Bug: 975424 Change-Id: Icf178be377476a7107a416e3a539a8c87e017197 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2158326Reviewed-by:
Tarun Bansal <tbansal@chromium.org> Reviewed-by:
Robert Ogden <robertogden@chromium.org> Commit-Queue: Ryan Sturm <ryansturm@chromium.org> Cr-Commit-Position: refs/heads/master@{#760942}
-
Nasko Oskov authored
Currently, the code relies on checks at ReadyToCommit time to detect whether navigation will commit regular URL into a WebUI process. This CL adds more logic to the check and performs it also when verifying commit parameters being received from the renderer process. Initially, the change uses DumpWithoutCrashing to ensure that the newly added checks perform as expected and once that is verified they will be converted to either CHECK or renderer process termination in follow up changes. This ensures that we have consistent application of WebUI security checks both before and after the commit for each navigation. Bug: 1002276, 1069939 Change-Id: Iefa6bdfc6b5e8686ad4fdc2553b245be0c228d64 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2097833 Commit-Queue: Nasko Oskov <nasko@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Reviewed-by:
Charlie Reis <creis@chromium.org> Cr-Commit-Position: refs/heads/master@{#760941}
-
Nicolás Peña Moreno authored
Bug: 1007641 Change-Id: I03b1387454ce22d11b43730aed7905d1d8d51c67 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2106335Reviewed-by:
Xiaohan Wang <xhwang@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Commit-Queue: Nicolás Peña Moreno <npm@chromium.org> Cr-Commit-Position: refs/heads/master@{#760940}
-
Randy Rossi authored
This removes previously added dep to exo. The full screen shell surface can be found by finding the view with kClient role with a child tree id string property set Bug: None Test: Local build with chromecast display assistant Change-Id: I29a3f9c50de9ae4f5f3065eddbcccc0ca559a3b0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2149396 Commit-Queue: Randy Rossi <rmrossi@chromium.org> Reviewed-by:
Daniel Nicoara <dnicoara@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#760939}
-
Ramin Halavati authored
Profile API are updated for better support of multiple off-the-record profiles (issue 1033903) and Independent OTR profiles will be deprecated. This CL updates DevTools to use the newer profile APIs and removes the dependency on Independent OTRs profiles. Bug: 1033903 Change-Id: I735004093cd6065b14d06305edef50c82f3c0c80 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2141097Reviewed-by:
Peter Marshall <petermarshall@chromium.org> Reviewed-by:
Yang Guo <yangguo@chromium.org> Commit-Queue: Yang Guo <yangguo@chromium.org> Auto-Submit: Ramin Halavati <rhalavati@chromium.org> Cr-Commit-Position: refs/heads/master@{#760938}
-
Friedrich Horschig authored
Following feedback on b/154254026, the first part of the string wasn't sounding correctly and the second part was hard to understand in context of the userflow. Bug: 1068555 Change-Id: I83714244d56bde1a29025de1cebe5b17cbe6beac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2157540Reviewed-by:
Mohamed Amir Yosef <mamir@chromium.org> Commit-Queue: Friedrich [CET] <fhorschig@chromium.org> Cr-Commit-Position: refs/heads/master@{#760937}
-
Charlie Harrison authored
This can help track if we need to do more database optimizations to make deletion faster (e.g. add more indices). Bug: None Change-Id: I74dcb9c14bcd9b99a6f27af1ca3a32013e61bc22 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2158445Reviewed-by:
Christian Dullweber <dullweber@chromium.org> Commit-Queue: Charlie Harrison <csharrison@chromium.org> Cr-Commit-Position: refs/heads/master@{#760936}
-
Dominique Fauteux-Chapleau authored
Change-Id: I3abb5674b5c751e3bd1420dcf86db7115d630649 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2153318Reviewed-by:
Daniel Rubery <drubery@chromium.org> Commit-Queue: Dominique Fauteux-Chapleau <domfc@chromium.org> Cr-Commit-Position: refs/heads/master@{#760935}
-
Stephen Chenney authored
When this test was landed, a file move was not reflected in the paths to resources. Fix it. TBR: fs@opera.com Change-Id: I6b1df77d11c63e657369e681f52d9091b27b428a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159305Reviewed-by:
Stephen Chenney <schenney@chromium.org> Reviewed-by:
Fredrik Söderquist <fs@opera.com> Commit-Queue: Stephen Chenney <schenney@chromium.org> Cr-Commit-Position: refs/heads/master@{#760934}
-
Friedrich Horschig authored
The removed code is dead with M83. Bug: None, clean-up Change-Id: I1bc8770cc3aa3828d6b2a11c12b87fcfc4ed6c9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2156999 Commit-Queue: Friedrich [CET] <fhorschig@chromium.org> Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Auto-Submit: Friedrich [CET] <fhorschig@chromium.org> Cr-Commit-Position: refs/heads/master@{#760933}
-
Internal Frameworks Autoroller authored
TBR=bling-p10-rolls@google.com Change-Id: I7cdd0d7cb30b67e85ff4b2af7712c188b2421c68 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2158967Reviewed-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@{#760932}
-
Benoit Lize authored
Now that Kit Kat is no longer supported in Chrome, remove a K-only fallback in library loading. Bug: 1073043 Change-Id: Ifd8a0b0ed0df45e6c19190fa2ce6dad142def9af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159227 Commit-Queue: Benoit L <lizeb@chromium.org> Reviewed-by:
Egor Pasko <pasko@chromium.org> Cr-Commit-Position: refs/heads/master@{#760931}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/d5f00dc1c64d..075e3e17b781 git log d5f00dc1c64d..075e3e17b781 --date=short --first-parent --format='%ad %ae %s' 2020-04-21 alexrudenko@chromium.org Allow pasting complete color strings into color picker Created with: gclient setdep -r src/third_party/devtools-frontend/src@075e3e17b781 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/+/master/autoroll/README.md Bug: None Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I2adcd92dc87ae7c332330e57ebbe53994719d5c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159024Reviewed-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@{#760930}
-
Michael Lippautz authored
Use broker object for querying liveness. Bug: chromium:1071168 Change-Id: Ie6ca397d4378b84dd17f09958cee10dadf1dfdbf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2152789Reviewed-by:
Omer Katz <omerkatz@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#760929}
-
Robbie Gibson authored
This reverts commit 723e06ee. Reason for revert: There was a name mismatch, but it wasn't here. It was on the Finch config end. Original change's description: > [iOS] Fix incorrect flag name for OmniboxOnFocusSuggestions > > Because the name was incorrect here, when Finch sends a config for this > Feature, both the gws_id from Finch and the gws_id defined in > about_flags were sent back to gws. If an enabled and a disabled ID are > sent to gws, the disabled id is the one that takes affect, so the > feature ends up disabled. > > Bug: 1071078 > Change-Id: Ic67f1d5415ac5895a84ee41adc8b2c98d1c38456 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2153106 > Reviewed-by: Rohit Rao <rohitrao@chromium.org> > Commit-Queue: Robbie Gibson <rkgibson@google.com> > Cr-Commit-Position: refs/heads/master@{#759983} TBR=rohitrao@chromium.org,rkgibson@google.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 1071078 Change-Id: I9ac014ef320a1c7ae19634d37aca03f66bf570a9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2156547Reviewed-by:
Robbie Gibson <rkgibson@google.com> Commit-Queue: Robbie Gibson <rkgibson@google.com> Cr-Commit-Position: refs/heads/master@{#760928}
-
Wez authored
Simplify the CastRunner implementation by moving the state machine for pending CastComponent launches out to its own class. Bug: 1071544 Change-Id: If2f2c2bf2c3ff4fe47b9d27461f6abb09d2e423b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2153156 Commit-Queue: Wez <wez@chromium.org> Reviewed-by:
David Dorwin <ddorwin@chromium.org> Auto-Submit: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#760927}
-
Wez authored
This reverts commit 96fb1b2a. Reason for revert: This suite encounters some kind of networking flake in roughly 20% of runs. Original change's description: > [Fuchsia] Enable cc_unittests on Fuchsia x64 CI bot. > > Adds about 2-3 minutes of bot time per test run. > > Bug: 1046552 > Change-Id: I3cc46ce2769dc2b64e6d966a4eb4c5ed2737070c > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2157545 > Reviewed-by: Brian Sheedy <bsheedy@chromium.org> > Commit-Queue: Chong Gu <chonggu@google.com> > Cr-Commit-Position: refs/heads/master@{#760636} TBR=bsheedy@chromium.org,chonggu@google.com Change-Id: I36856633ebf26196728f2a85e21e5f61558b44f7 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 1046552 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159221Reviewed-by:
Wez <wez@chromium.org> Commit-Queue: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#760926}
-
Francois Doray authored
Previously, application start time was only recorded on Android. Change-Id: I784a4aa6b440b88aa6864e864a8af12f1b1485f4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2152407Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#760925}
-
Side Yilmaz authored
This CL removes unused |getLastUsedProfileKey| from Android codebase. Bug: 1041781 Change-Id: Ide3725973a8b44f968aed93e5a9e9e9dd9a382ad Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2149362Reviewed-by:
Ramin Halavati <rhalavati@chromium.org> Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Commit-Queue: Side YILMAZ <sideyilmaz@chromium.org> Cr-Commit-Position: refs/heads/master@{#760924}
-
Viktor Semeniuk authored
Change color of secondary text in Autofill Passwords list-item ("x compromised passwords"). Bug: 1072992 Change-Id: I6577f2263f6f2791a6a98d0f55739a4b4d45f30c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159210Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Commit-Queue: Viktor Semeniuk <vsemeniuk@google.com> Cr-Commit-Position: refs/heads/master@{#760923}
-
Hans Wennborg authored
Fix code that was implicitly depending on logging.h or its dependencies. For example, code that uses DISALLOW_COPY_AND_ASSIGN should include base/macros.h, but it currently happens to work if it pulls in logging.h directly or through some dependency. This is part of refactoring the codebase to use check.h/check_op.h for the CHECK and CHECK_op macro instead of logging.h. Bug: 1031540 Change-Id: Ibdaee90f6af0e9e2cb304274e6a326ea789613c5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2156947 Auto-Submit: Hans Wennborg <hans@chromium.org> Commit-Queue: Colin Blundell <blundell@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#760922}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/607a489345ad..24ea293cd25b git log 607a489345ad..24ea293cd25b --date=short --first-parent --format='%ad %ae %s' 2020-04-21 fmalita@chromium.org [skottie] Suppress ubsan div-by-zero VenetialBlindsAdapter crash Created with: gclient setdep -r src/third_party/skia@24ea293cd25b 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 jcgregorio@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 Bug: None Tbr: jcgregorio@google.com Change-Id: I8f4842e23cdabc45ed2ed94a8970b08297ab888e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159023Reviewed-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@{#760921}
-
Finnur Thorarinsson authored
When switching to multi-window (showing both the Clear Data dialog and the Font screen under Settings) onBindDialogView is called on any font changes, but getPreference() returns |null| on each change. Fortunately, we don't need an actual instance, we can just statically get the data we need. Bug: 1072354, 1068710 Change-Id: I12379c4832c32ea8c4abe7e69106ae9e349716aa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2157544Reviewed-by:
Peter Conn <peconn@chromium.org> Commit-Queue: Finnur Thorarinsson <finnur@chromium.org> Cr-Commit-Position: refs/heads/master@{#760920}
-
Tanmoy Mollik authored
This cl adds logic in sign in flow to show ManageSyncSettings page instead of SyncAndServicesSettings page when the user presses settings in advanced sync consent flow. Bug: 1066540 Change-Id: Ia69e9b86f9ed63b411cd88832ae4978253ea4835 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2153050Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Commit-Queue: Tanmoy Mollik <triploblastic@chromium.org> Cr-Commit-Position: refs/heads/master@{#760919}
-
Chromium WPT Sync authored
Using wpt-import in Chromium bf9aa24e. With Chromium commits locally applied on WPT: d0ad7cf8 "UpgradeInsecureRequest: Add WPTs for static-import in dedicated/shared workers" 86131ac4 "Add a test for ReplaceTrack that verifies video track content." 6c8523d2 "[scroll-timeline] Implement element-based scroll offset" daae887f "CookieStore: Add validation behavior for __Host- prefixed cookies" Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md Directory owners for changes in this CL: panicker@chromium.org, tdresser@chromium.org: external/wpt/paint-timing NOAUTOREVERT=true TBR=robertma No-Export: true Change-Id: I68481a0241d0668d34bfa6facad201e562f1ecac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159107Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#760918}
-
Alice Wang authored
This CL refactors AccountManagerFacade.getGoogleAccountNames(callback) into AccountManagerFacade.getGoogleAccounts(callback). The latter is simpler and can be used in more places. Bug: 1070624 Change-Id: I4f9e490aa275b00bb17f77567d6e4dd1106a8e8c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2154191 Commit-Queue: Alice Wang <aliceywang@chromium.org> Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#760917}
-
arthursonzogni authored
Design doc: https://docs.google.com/document/d/1WYoa6pHg8kUzynXLBlTg08X5PTESwP9M6pN1QCMIKow To be landed on 2020-04-20 Bug: https://crbug.com/1063832 Change-Id: I1ab4a9143d6879f83dab8f8282e2724b5f540f63 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2122647Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Nasko Oskov <nasko@chromium.org> Reviewed-by:
Lucas Gadani <lfg@chromium.org> Commit-Queue: Arthur Sonzogni <arthursonzogni@chromium.org> Cr-Commit-Position: refs/heads/master@{#760916}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/9c32b4f6f16f..f9cd85317277 git log 9c32b4f6f16f..f9cd85317277 --date=short --first-parent --format='%ad %ae %s' 2020-04-21 fmayer@google.com Add --disable-fork-teardown to script. Created with: gclient setdep -r src/third_party/perfetto@f9cd85317277 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@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 Bug: chromium:153893612 Tbr: perfetto-bugs@google.com Change-Id: I5af55ff06e1f37fd4d19e5064a2f04869a475d92 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159022Reviewed-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@{#760915}
-
Nigel Tao authored
Bug: 1070409 Change-Id: I3c479d0d6472d78f3576a7914c3da0fb238514d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2154433Reviewed-by:
David Staessens <dstaessens@chromium.org> Commit-Queue: Nigel Tao <nigeltao@chromium.org> Cr-Commit-Position: refs/heads/master@{#760914}
-
Anastasiia Nikolaienko authored
Bug: 1043108, 1070656 Change-Id: Ib0b9cf4037a6cbfb7b7dd00544bbd931e0e70fc5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2130846Reviewed-by:
David Roger <droger@chromium.org> Reviewed-by:
Kush Sinha <sinhak@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Anastasiia N <anastasiian@chromium.org> Cr-Commit-Position: refs/heads/master@{#760913}
-
Joe Mason authored
Change-Id: I30daf98f31d72441a35c62d016c65a62542f5fed Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2157681 Auto-Submit: Joe Mason <joenotcharles@chromium.org> Commit-Queue: Sigurður Ásgeirsson <siggi@chromium.org> Reviewed-by:
Sigurður Ásgeirsson <siggi@chromium.org> Cr-Commit-Position: refs/heads/master@{#760912}
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/be08000cb52e..fee2783cb0b7 git log be08000cb52e..fee2783cb0b7 --date=short --first-parent --format='%ad %ae %s' 2020-04-21 cwallez@chromium.org Deprecate ShaderModuleDescriptor.code in favor of chained descriptor 2020-04-21 cwallez@chromium.org Make all backend::ShaderModule get SPIRV from the frontend 2020-04-21 cwallez@chromium.org Deprecate BG[L]Desc::binding[s|Count] in favor of entr[ies|yCount] Created with: gclient setdep -r src/third_party/dawn@fee2783cb0b7 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/dawn-chromium-autoroll Please CC cwallez@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:dawn-linux-x64-deps-rel;luci.chromium.try:dawn-mac-x64-deps-rel;luci.chromium.try:dawn-win10-x64-deps-rel;luci.chromium.try:dawn-win10-x86-deps-rel Bug: None Tbr: cwallez@google.com Change-Id: Ibdf44102e8e20b4e0a50127cfe4530cd070a973c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159020Reviewed-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@{#760911}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/1f0677d01e49..146137adeebe git log 1f0677d01e49..146137adeebe --date=short --first-parent --format='%ad %ae %s' 2020-04-21 mbonadei@webrtc.org Merge OOURA BUILD.gn files. Created with: gclient setdep -r src/third_party/webrtc@146137adeebe 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/+/master/autoroll/README.md Bug: None Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: I932eb3f2e5ab265ea884854b04f028058929436b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2159019Reviewed-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@{#760910}
-
Noel Gordon authored
Add build config for zlib_x86_simd, and define CRC32_SIMD_SSE42_PCLMUL within it. Change crc32.c to use it to guard the crc_folding code, not the unrelated ADLER32_SIMD_SSSE3 guard. Bug: 1072308 Change-Id: I7146cf8b83086e5f706ae0c3ad4c13caa2ec0b01 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2156233 Commit-Queue: Noel Gordon <noel@chromium.org> Reviewed-by:
Chris Blume <cblume@chromium.org> Reviewed-by:
Adenilson Cavalcanti <cavalcantii@chromium.org> Cr-Commit-Position: refs/heads/master@{#760909}
-