- 25 Sep, 2020 40 commits
-
-
Sunny Sachanandani authored
This reverts commit 0e2b4943. Reason for revert: Trace tests failing on multiple FYI bots: crbug.com/1132375, crbug.com/1132381 Original change's description: > gpu: Remove obsolete direct composition feature flags > > Remove the NV12, decode swap chain, and underlay feature flags since > these features have shipped for quite some time. The NV12 feature flag > was also used for using YUY2 over NV12 for tests so introduce a new flag > for choosing the default SDR video overlay swap chain format. Add tests > for NV12, YUY2, and BGRA instead of just YUY2. Also cleanup some of the > testing code to be consistent in other_args, switch names, etc. > > Bug: 869677 > Change-Id: I0831b103506f394d6fe26bf1085401e2e2d50599 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2424576 > Reviewed-by: Maggie Chen <magchen@chromium.org> > Reviewed-by: Zhenyao Mo <zmo@chromium.org> > Commit-Queue: Sunny Sachanandani <sunnyps@chromium.org> > Cr-Commit-Position: refs/heads/master@{#810453} TBR=zmo@chromium.org,sunnyps@chromium.org,magchen@chromium.org,enga@chromium.org Change-Id: Id3a7de405887326d0fd09d2e8efa36637ffbf4c8 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 869677, 1132375, 1132381 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2432207Reviewed-by:
Sunny Sachanandani <sunnyps@chromium.org> Commit-Queue: Sunny Sachanandani <sunnyps@chromium.org> Cr-Commit-Position: refs/heads/master@{#810700}
-
Evan Stade authored
Code that is required by Android must be moved. Code that is only used on desktop is generally not moved as it would require extra refactoring (e.g. because it accesses g_browser_process). The code is mostly moved without substantive changes, with a few exceptions: - KeyedServiceFactories are split into a base class and a Chrome specialization. The Chrome specialization holds the singleton LazyInstance. The base class expects exactly one instantiation. This should be safe so long as the Chrome factory's getter is called first. This applies to MediaRouterFactory and LocalPresentationManagerFactory. - Metrics code which relies on types that are now //chrome specific is inlined (moved from media_router_metrics). In wider Chrome, metrics code is not typically centralized, especially when it only has a single caller. Even in media router code, this central file was not being used consistently. - Media router dialog uses a factory method instead of a creation function that's defined at compile time. This is necessary for components_unittests to compile (the Views version no longer lives near the cross-platform MediaRouterDialogController). Bug: 1057100 Change-Id: I636eb89c121890ff9409d946ee988fc8c04a411a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2405519Reviewed-by:
mark a. foltz <mfoltz@chromium.org> Reviewed-by:
Thomas Guilbert <tguilbert@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Evan Stade <estade@chromium.org> Cr-Commit-Position: refs/heads/master@{#810699}
-
Michael Ludwig authored
Bug: skia:10205 Change-Id: I9a9ef9ab522741f5ed3091884f1f202a310ba8d9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2423314 Commit-Queue: Michael Ludwig <michaelludwig@google.com> Reviewed-by:
Brian Salomon <bsalomon@google.com> Reviewed-by:
Robert Phillips <robertphillips@google.com> Cr-Commit-Position: refs/heads/master@{#810698}
-
Mohamed Amir Yosef authored
Before this patch: The old query proto was created first and then converted to the new proto. After this patch: The new query proto is created directly Bug: 1114655 Change-Id: I08255787e05f99622d9ead139cd932ced1b4a87f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2429407Reviewed-by:
Dominic Battré <battre@chromium.org> Commit-Queue: Mohamed Amir Yosef <mamir@chromium.org> Cr-Commit-Position: refs/heads/master@{#810697}
-
Francois Doray authored
Bug: 1121725 Change-Id: I6ae687a4ed0324d32b76b4ec4d60b7b948245d91 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376445Reviewed-by:
Adam Rice <ricea@chromium.org> Commit-Queue: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#810696}
-
Bence Béky authored
Change-Id: I106a5c95c36a9f885a81ff8d010d3bcbdb5cc4eb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431453 Auto-Submit: Bence Béky <bnc@chromium.org> Reviewed-by:
David Schinazi <dschinazi@chromium.org> Commit-Queue: David Schinazi <dschinazi@chromium.org> Cr-Commit-Position: refs/heads/master@{#810695}
-
Bin Wu authored
https://quiche.googlesource.com/quiche.git/+log/9a74ee9f6be4..ba9d95e4328b $ git log 9a74ee9f6..ba9d95e43 --date=short --no-merges --format='%ad %ae %s' 2020-09-24 fayang Add a regression test of b/168294218, also verified gfe2_reloadable_flag_quic_fix_missing_initial_keys fixes the issue. 2020-09-24 wub Add a quic::CryptoBuffers class to own a std::vector<CRYPTO_BUFFER*> and the buffers the elements point to. Use it in TlsServerHandshaker. 2020-09-24 fayang Make sure we have the right key before sending data. 2020-09-24 fayang Add explicit signal of coalscing done to QuicConnection. Created with: roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src R=dschinazi@chromium.org Change-Id: Ief25b2bba04ac6a0a95c92347bc69e8df36aa467 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2432104 Commit-Queue: Bin Wu <wub@chromium.org> Commit-Queue: David Schinazi <dschinazi@chromium.org> Auto-Submit: Bin Wu <wub@chromium.org> Reviewed-by:
David Schinazi <dschinazi@chromium.org> Cr-Commit-Position: refs/heads/master@{#810694}
-
Eric Orth authored
Replace |DnsConfigOverrides::hosts| with a simple |clear_hosts| bool that merely specifies to not use HOSTS read from the system. Shouldn't ever be any reason to ever override with made-up HOSTS values. This simplification cleans up a lot of unnecessary complexity and reduces net-external dependencies. Bug: 1129993 Change-Id: Ie86b5e0394f763dcbe22b1d8db127c84d3501045 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2419536 Commit-Queue: Eric Orth <ericorth@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Dan McArdle <dmcardle@chromium.org> Cr-Commit-Position: refs/heads/master@{#810693}
-
Pavol Drotar authored
We require the ability to tell whether the browser supports site settings shortcuts for WebApks. This change will allow us to turn site settings shortcut on/off by adding/removing a category from the manifest. Bug: 1128985 Change-Id: If1f1d672bbee162287db401ebfc947cf4ce567fe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2428965 Commit-Queue: Pavol Drotár <pavoldrotar@google.com> Reviewed-by:
Peter Kotwicz <pkotwicz@chromium.org> Reviewed-by:
Peter Conn <peconn@chromium.org> Cr-Commit-Position: refs/heads/master@{#810692}
-
Joshua Pawlicki authored
This file should have been deleted in https://chromium-review.googlesource.com/c/chromium/src/+/2424149/4 but a bad merge resolution removed it from that CL (oops). Bug: 1131080 Change-Id: Ia07af7e19a87784049be5a8dc4fe81e66526c6e1 Fixed: 1131080 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431793 Commit-Queue: Joshua Pawlicki <waffles@chromium.org> Commit-Queue: Sorin Jianu <sorin@chromium.org> Auto-Submit: Joshua Pawlicki <waffles@chromium.org> Reviewed-by:
Sorin Jianu <sorin@chromium.org> Cr-Commit-Position: refs/heads/master@{#810691}
-
Charlene Yan authored
Currently layer scrolling is only enabled on mac by default. Providing a constructor arg allows users of ScrollView to enable layer scrolling regardless of platform. This will initially be used for the ScrollView container that holds the tabstrip for Tab Scrolling. Bug: 1129675 Change-Id: Ie1a34d45eac952fcaf08daa313ee15bb36aa58ab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2416943Reviewed-by:
Robert Liao <robliao@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Commit-Queue: Charlene Yan <cyan@chromium.org> Cr-Commit-Position: refs/heads/master@{#810690}
-
Austin Sullivan authored
Prefer casts to .data() when converting StringPieces to std::String. .data() returns a buffer which may not be null-terminated. Makes style consistent with FileStreamWriterTest https://crrev.com/c/2422682/comment/44d13478_d54456b9/ Change-Id: I06560e2876f58e8ce719eded41249be51707d68e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2425460Reviewed-by:
Marijn Kruisselbrink <mek@chromium.org> Reviewed-by:
enne <enne@chromium.org> Commit-Queue: Austin Sullivan <asully@chromium.org> Cr-Commit-Position: refs/heads/master@{#810689}
-
Kyra Moed authored
Updated LorgnetteManagerClient::StartScan() to require ScanSettings proto instead of ScanProperties struct parameter. Updated all relevant functions (including LorgnetteScannerManager::Scan() and DocumentScanScanFunction::OnNamesReceived()) to use proto as argument. Bug: b:169083357 Change-Id: I44f1314ce7c9595f675fa277599e4335da9f72d8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2428752Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Kyra Moed <kmoed@google.com> Cr-Commit-Position: refs/heads/master@{#810688}
-
chromium-internal-autoroll authored
Release_Notes: http://go/media_app-x20/relnotes/Main/media_app_202009250800_RC00.html https://chrome-infra-packages.appspot.com/p/chromeos_internal/apps/media_app/app/+/wdyeXKN2Sqps4c-dKz5p7osNT-u5oIOm6T_oySHQw9gC 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;luci.chrome.try:linux-chromeos-chrome-easwa Bug: b/154881537,b/159892033,b/161496439,b/168081365,b/169107664 Tbr: media-app@grotations.appspotmail.com Change-Id: I873d94d3ad5ebd2e0dc19c9ee20ef7c78cbc12a0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431833Reviewed-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@{#810687}
-
chromium-autoroll authored
This CL may cause a small binary size increase, roughly proportional to how long it's been since our last AFDO profile roll. For larger increases (around or exceeding 100KB), please file a bug against gbiv@chromium.org. Additional context: https://crbug.com/805539 Please note that, despite rolling to chrome/android, this profile is used for both Linux and Android. If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/afdo-chromium-autoroll Please CC gbiv@chromium.org 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: gbiv@chromium.org Change-Id: I16df6385534dfc88202a2b7768b5d5e340224afe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431835Reviewed-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@{#810686}
-
James Vecore authored
Turns out we were not handling the peer reset events on the SendMore and ReceiveMore functions which could cause an infinite looping when the other side resets. Fixed: 1132118 Change-Id: I87113518b01f56497f09e361931cc64647819df8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2430294 Auto-Submit: James Vecore <vecore@google.com> Commit-Queue: Josh Nohle <nohle@chromium.org> Reviewed-by:
Josh Nohle <nohle@chromium.org> Cr-Commit-Position: refs/heads/master@{#810685}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/39a3f081c129..d3db8535d3a9 2020-09-25 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision fb765f65..063275b4 (810252:810396) 2020-09-24 deadbeef@webrtc.org Check length before dereferencing SCTP notifications. 2020-09-24 hta@webrtc.org When stopping a transceiver, end the receiver's track. 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: chromium:1127774 Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: I91eaab5b48b6ad382a1d735393629451cc14a6c0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2430845Reviewed-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@{#810684}
-
Aaron Leventhal authored
- Display: none objects should not get an accessible name. - EnsureComputedStyle() should not be called during a potentially unsafe time. This is fixed by calling it during Init(), in cases where it will likely be needed (inside a display:none subtree). - Remove unnecessary and often incorrect heuristic for determining when inside an aria-labelledby or aria-describedy calculation. This flag is already passed in via recursion when following that kind of relation. - Do not recurse into children that are explicitly hidden - Improve explicitly hidden computation for CSS visibility. Explicitly hidden means that the element was specifically hidden, and that it didn't just inherit the fact that it's hidden. - Improve results in name-calc-visibility, where an element explicitly referenced by aria-labelledby wasn't included in the name because it was visibility:hidden element. Elements that are explicitly referenced must be included in a name or description even if they are hidden. TBR: dmazzoni@chromium.org Bug: 1130436 Change-Id: I52d11208a9658a53bf0af7313a41f4bb8eafc24e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431448Reviewed-by:
Aaron Leventhal <aleventhal@chromium.org> Commit-Queue: Aaron Leventhal <aleventhal@chromium.org> Cr-Commit-Position: refs/heads/master@{#810683}
-
Daniel Rubery authored
This CL extends a few high-level metrics for Safe Browsing download scanning: Download.DangerousFile.DownloadValidatedByType Download.ShowedDownloadWarning Download.UserValidatedDangerousDownload SBClientDownload.CheckWhitelistResult SBClientDownload.DmgFileSuccessByType SBClientDownload.DownloadRequestPayloadSize And expires: SafeBrowsing.UnverifiedDownloads.Allowed SafeBrowsing.UnverifiedDownloads.AllowedByWhitelist SafeBrowsing.UnverifiedDownloads.AllowedDueToDisabledService SafeBrowsing.UnverifiedDownloads.AlternateExtensionCount SafeBrowsing.UnverifiedDownloads.Blocked SBClientDownload.RarFileArchivedBinariesCount Fixed: 1089447, 1089446, 1089430, 1088739, 1088727 Change-Id: I7034520fc0b4241feee8c59775f0aadf57472d6a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2429228 Auto-Submit: Daniel Rubery <drubery@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Varun Khaneja <vakh@chromium.org> Commit-Queue: Daniel Rubery <drubery@chromium.org> Cr-Commit-Position: refs/heads/master@{#810682}
-
Nela Kaczmarek authored
This change moves the implementation of MockAffiliationFetcherDelegate from affiliation_fetcher_unittest.cc to mock_affiliation_fetcher_delegate.h. It is required to use the instance of MockAffiliationFetcherDelegate in the unit tests of HashAffiliationFetcher yet to be implemented. Bug: 1108279 Change-Id: I902cc13f1c66bc079a28b76d904353196a1cb157 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2426584Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Commit-Queue: Nela Kaczmarek <nelakaczmarek@google.com> Cr-Commit-Position: refs/heads/master@{#810681}
-
Collin Baker authored
This is a reland of 944aea5f The test relied on the toolbar being hidden at the start. This CL shows IPH bubble on the toolbar, causing a toolbar reveal. While this is desired behvaior in production, the test needs to disable the IPH to work correctly. This reland adds a FeaturePromoControllerViews method to cancel the current IPH promo and block later ones. The test is changed to call it at the beginning. Original change's description: > Show in-product help when WebUI tab strip is first shown > > Before, an IPH bubble was shown when a second tab was opened. With > this CL it is shown as soon as possible after the WebUI tab strip is > initialized. > > Bug: None > Change-Id: I2f3e7a7dd04229953af5eefe99e00dbcbbfaa8da > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2418566 > Commit-Queue: Dana Fried <dfried@chromium.org> > Reviewed-by: Dana Fried <dfried@chromium.org> > Cr-Commit-Position: refs/heads/master@{#810097} Bug: None Change-Id: Ic3c06f6c35ce9014c3370abc86c029de5af3bb22 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2429400 Commit-Queue: Collin Baker <collinbaker@chromium.org> Reviewed-by:
Dana Fried <dfried@chromium.org> Reviewed-by:
Charlene Yan <cyan@chromium.org> Cr-Commit-Position: refs/heads/master@{#810680}
-
Dave Tapuska authored
WebFloatSize has been replaced with gfx::SizeF and is no longer used. BUG=1097816 Change-Id: Ifa45a28d412fb134614e4447e196e5480db760e5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2428827Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#810679}
-
Gyuyoung Kim authored
In public/common, *Web* prefix doesn't tend to be used. So, this PR removes *Web* prefix in the WebViewportStyle. Bug: 919392 Change-Id: I3fd0b104f8b003c09f96caf7e34b3e86a4646f4d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2423755Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Sean Topping <seantopping@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#810678}
-
Jan Wilken Dörrie authored
This change replaces usages of autofill::PasswordForm with password_manager::PasswordForm in the file range [leak...orig] in the //components/password_manager/core/browser directory. Bug: 1067347 Change-Id: I952a90a51ad52740f755683752ceaf81768e9e1e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2430985Reviewed-by:
Mohamed Amir Yosef <mamir@chromium.org> Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#810677}
-
Jan Wilken Dörrie authored
TBR=sebsg Bug: 1132310 Change-Id: Ie981d1cb4675cb8656b0f182b75491800e1941ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431485Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#810676}
-
Harvey Yang authored
This commit adds MojoConnectionServiceProvider in //chrome/browser/chromeos, which lets processes connect to Chrome, bootstrap to mojo network, and establish the required mojo channel. Currently it supports IIO Service and Sensor Clients, such as iioservice_simpleclient and powerd. BUG=b:162189963 TEST=builds and test with IIO Service and iioservice_simpleclient on octopus. Cq-Depend: chromium:2392288 Change-Id: I58acb88045b398031bedbf47474a913eb0ed4913 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2352298Reviewed-by:
Jorge Lucangeli Obes <jorgelo@chromium.org> Reviewed-by:
Ryo Hashimoto <hashimoto@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Cheng-Hao Yang <chenghaoyang@chromium.org> Cr-Commit-Position: refs/heads/master@{#810675}
-
Marijn Kruisselbrink authored
We would like to keep monitoring these for a while as this API starts getting more use. Bug: 1104951 Change-Id: Idfe971411ee812343ede0197cd27ff0297795c2f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2430229Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#810674}
-
Esmael El-Moslimany authored
The restyle to match the modules is only enabled when the ntp-modules feature flag is enabled. Bug: 1110067 Change-Id: Ib394df60498bca8845b3cbd49bd49cdedd72c2c7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2429230 Commit-Queue: Esmael Elmoslimany <aee@chromium.org> Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#810673}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 5d6c6b52. With Chromium commits locally applied on WPT: 8f02a380 "Use allow attribute for delegation in web serial WPT" c1a7d15a "[LayoutNG] Multicol baseline propagation support." f30daabb "[COOP] access reporting: test with redirects." 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: foolip@chromium.org, lpz@chromium.org, robertma@chromium.org: external/wpt/tools nzolghadr@chromium.org, yosin@chromium.org: external/wpt/input-events NOAUTOREVERT=true TBR=foolip@google.com No-Export: true Change-Id: I6cf9507279b12fa0bf4ddeeb5afdbc059b027d8e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2432044Reviewed-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@{#810672}
-
Orin Jaworski authored
Bug: 893183 Change-Id: I26120d43a87e2faf313c9cf2cafb7664f17759e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2430185 Commit-Queue: Orin Jaworski <orinj@chromium.org> Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#810671}
-
Jan Wilken Dörrie authored
This change replaces usages of autofill::PasswordForm with password_manager::PasswordForm in the file range [pass...psl] in the //components/password_manager/core/browser directory. Bug: 1067347 Change-Id: I03337f6b3555a73e58ddd939a4e6cf879198b709 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2429772Reviewed-by:
Mohamed Amir Yosef <mamir@chromium.org> Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#810670}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/c39ab997ba7a..7f386135788a 2020-09-25 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). 2020-09-25 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/depot-tools-chromium-autoroll Please CC sokcevic@google.com,ajp@google.com,apolito@google.com,ehmaldonado@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: sokcevic@google.com,ajp@google.com,apolito@google.com,ehmaldonado@google.com Change-Id: I3afbe048d185c131e43205216b6cf9270228fa7b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2429220Reviewed-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@{#810669}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1601013503-170d2d1d55cdbd64ec85654eee6bce6ad2a17ca2.profdata to chrome-win64-master-1601034748-023a9c52685bf2df5bc5619a1b9c5135fdad71eb.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 sebmarchand@chromium.org,jeffyoon@google.com,liaoyuke@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: sebmarchand@chromium.org,jeffyoon@google.com,liaoyuke@google.com Change-Id: I37df2e04ee97de292e50c89847ba1012d061fa5e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431828Reviewed-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@{#810668}
-
Aya ElAttar authored
This is a reland of 11b3502f Original change's description: > Change DLP rules policy to dict type > > - Changed DataLeakPreventionRulesList type to > dict and to use SchemaValidator instead of a simple > list. > > Bug: 1131904 > Change-Id: Ia7268abd7003856e26eee19bb4cb7970320392eb > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2428984 > Commit-Queue: Aya Elsayed <ayaelattar@chromium.org> > Reviewed-by: Sergey Poromov <poromov@chromium.org> > Reviewed-by: Maksim Ivanov <emaxx@chromium.org> > Cr-Commit-Position: refs/heads/master@{#810582} Bug: 1131904 Change-Id: Ibab5e849cebd6d8b3781f486f28aaf406e38b2e7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2432024Reviewed-by:
Sergey Poromov <poromov@chromium.org> Reviewed-by:
Maksim Ivanov <emaxx@chromium.org> Commit-Queue: Sergey Poromov <poromov@chromium.org> Cr-Commit-Position: refs/heads/master@{#810667}
-
chrome://flagsTitouan Rigoudy authored
Bug: chromium:986744 Change-Id: I61204d4f5e11c611e37dc95acdc2bc73af5199b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2387763Reviewed-by:
Arthur Sonzogni <arthursonzogni@chromium.org> Commit-Queue: Titouan Rigoudy <titouan@chromium.org> Cr-Commit-Position: refs/heads/master@{#810666}
-
chromium-autoroll authored
Roll Chrome Win32 PGO profile from chrome-win32-master-1601013503-f38bea78afe4f518e60cb51c463a620d383ff0cc.profdata to chrome-win32-master-1601024402-e01a8b4ea46e599b0bc76ffef4e1caecb20ec78d.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 sebmarchand@chromium.org,jeffyoon@google.com,liaoyuke@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: sebmarchand@chromium.org,jeffyoon@google.com,liaoyuke@google.com Change-Id: I1a44d38c67cb20de8f5bf066a88684c8478f08ce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2432004Reviewed-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@{#810665}
-
Mohamed Heikal authored
Generated by running the command in //third_party/metrics_proto/README.chromium Bug: 1114836 Change-Id: Iecfd3de54ffa0f9917b2e23ee1d20dd9648a7516 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2431787 Auto-Submit: Mohamed Heikal <mheikal@chromium.org> Commit-Queue: Brian White <bcwhite@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Cr-Commit-Position: refs/heads/master@{#810664}
-
Christoph Schwering authored
The feature is disabled by default and is not subject to an active experiment. Bug: 1007974 Change-Id: Ib0828e9ca74e5804a82c47ea18b169d2dec7f7a0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2410133Reviewed-by:
Matthias Körber <koerber@google.com> Commit-Queue: Christoph Schwering <schwering@google.com> Cr-Commit-Position: refs/heads/master@{#810663}
-
Gyuyoung Kim authored
There are |WebDragOperation| and |DragOperation| enum in blink. But, it's unnecessary to keep both in blink. So, this CL renames |WebDragOperation| to |DragOperation|, then removes |DragOperation| eunm type in drag_actions.h Bug: 919392 Change-Id: I81db9624d85f4eb31763f41665333cd269e22c05 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2424364Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#810662}
-
Cammie Smith Barnes authored
Flakiness may have been fixed by https://chromium-review.googlesource.com/c/chromium/src/+/2290775. Re-enable and monitor tests for any signs of further flakiness. Bug: 1098373 Change-Id: I3bb147b3b5fd7a1ec8fd17d99e5db44008278c80 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2391722Reviewed-by:
Josh Karlin <jkarlin@chromium.org> Commit-Queue: Cammie Smith Barnes <cammie@chromium.org> Cr-Commit-Position: refs/heads/master@{#810661}
-