- 02 Mar, 2020 40 commits
-
-
Garrett Beaty authored
This reverts commit ead9dd18. Reason for revert: The added builder doesn't work Original change's description: > add 'linux-rel-swarming' builder using chromium-swarm-staging > > This adds copy of > https://luci-milo-dev.appspot.com/p/chromium/builders/ci/linux-rel-swarming > but use chromium-swarm-staging.appspot.com. > > I don't have confidence whether this builder runs correctly at first, > but let me try to see what happens. > > Bug: b/144318226 > Change-Id: I3fba44f82619e6303fa2685063658eafbcbdf3b7 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1989300 > Auto-Submit: Takuto Ikuta <tikuta@chromium.org> > Reviewed-by: Yoshisato Yanagisawa <yyanagisawa@google.com> > Commit-Queue: Takuto Ikuta <tikuta@chromium.org> > Cr-Commit-Position: refs/heads/master@{#745826} TBR=maruel@chromium.org,yyanagisawa@google.com,yyanagisawa@chromium.org,tikuta@chromium.org,jwata@google.com Change-Id: I54ecad5adecb7283e309458a4edad4996bee7250 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: b/144318226 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083733Reviewed-by:
Garrett Beaty <gbeaty@chromium.org> Commit-Queue: Garrett Beaty <gbeaty@chromium.org> Cr-Commit-Position: refs/heads/master@{#746046}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/5f96597ad93d..23ee1aad0a5d git log 5f96597ad93d..23ee1aad0a5d --date=short --first-parent --format='%ad %ae %s' 2020-03-02 mathias@chromium.org Reconfigure lint rule w.r.t. quotes 2020-03-02 almuthanna@chromium.org Remove duplicated function from helper 2020-03-02 jacktfranklin@chromium.org Extract `collapseWhitespace` into StringUtilities Created with: gclient setdep -r src/third_party/devtools-frontend/src@23ee1aad0a5d 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: chromium:1050549,chromium:1057042 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I36e6802b3449df78abe93f67dfcd5ea2730d4218 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083226Reviewed-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@{#746045}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/73034dfdf4b0..35785308a451 git log 73034dfdf4b0..35785308a451 --date=short --first-parent --format='%ad %ae %s' 2020-03-02 wangra@google.com Vulkan: reserve extra varyings Created with: gclient setdep -r src/third_party/angle@35785308a451 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/+/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 Bug: None Tbr: ianelliott@google.com Change-Id: Ic6f8e81a509e1721ff958ebbc8c79cdfe8d227ce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083334Reviewed-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@{#746044}
-
David Van Cleve authored
This is the first of a series of two CLs expanding the Fetch API, when the runtime-enabled feature "TrustTokens" is enabled, to include a new experimental parameter `trustTokens` denoting a request to execute a Trust Tokens protocol step (https://github.com/wicg/trust-token-api) alongside the fetch at hand, by adding request headers and processing corresponding response headers. This is an experimental interface planned to be used in an origin trial. This CL implements the network service side of the data flow, by creating a Mojo struct representing the new Fetch parameter and adding a member of this type to ResourceRequest. The second, concurrent, CL (crrev.com/c/2036648) adds code to Blink to implement the JS binding and pass the data from the binding to the network::ResourceRequest field. Notes: - URLLoader will inspect requests' trust_token_params members and destinations, using these to make a decision about whether to execute Trust Tokens logic against the request. - The Mojo struct is "flat" (no pointer members) in order to be trivially copyable, since ResourceRequest requires this property of its members. serialization/deserialization of the mojom struct. Test: Expands URLRequestMojomTraits unit tests to test Bug: 1043118 Change-Id: Icc49ca2fe4a215330c8a9efdb36f4e050d41d05f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067803Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Yutaka Hirano <yhirano@chromium.org> Commit-Queue: David Van Cleve <davidvc@chromium.org> Cr-Commit-Position: refs/heads/master@{#746043}
-
Yusuke Sato authored
BUG=None TEST=try Change-Id: I167add5ffa3833387b0f246f6ffc497e80959209 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083050 Commit-Queue: Yury Khmel <khmel@chromium.org> Auto-Submit: Yusuke Sato <yusukes@chromium.org> Reviewed-by:
Yury Khmel <khmel@chromium.org> Cr-Commit-Position: refs/heads/master@{#746042}
-
Samuel Huang authored
SuperSize uses .map file only for native code analysis. However, previously it requires .map file always, even if native code analysis is skipped (via --java-only). This CL removes the restriction: So when using SuperSize to diagnoise Java size changes, one no longer needs to specify "generate_linker_map = true" in args.gn. Change-Id: I9cd36c16d4efe45fcee2ae7e6cea88511fa2b56c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2082895Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#746041}
-
Xiaoqian Dai authored
Fix a few bugs related to back gesture: - If we have a top active window that can perform back before entering tablet mode, then when entering tablet mode, we should show the nudge above the window. - Fix an issue that if switching to an existing tab that can perform go back operation, the nudge does not show up. We should trigger the navigation status change when active tab changes. - Also fix a crash happens when shutting down chrome when nudge is in animation. - Also use DidFinishNavigation() instead of NavigationEntryCommitted() to inform observers when a navigation happens inside of the current active webcontent. Bug: 1009005b Change-Id: I3caf166e6681cad7b3d9b88fa9fe32f2482f62bf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2081518Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#746040}
-
Monica Basta authored
As part of frienly settings, we have added a new feature to display the sWAA state in |chrome://settings/syncSetup|. The goal is to record if the user clickes on the external link to open Activity controls page to control their sWAA state. Bug: 1050070 Change-Id: Ic2ab6955e4004acbef1187964a8289e5da8ada00 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066749Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Zentaro Kavanagh <zentaro@chromium.org> Commit-Queue: Monica Basta <msalama@chromium.org> Cr-Commit-Position: refs/heads/master@{#746039}
-
Filip Gorski authored
This reverts commit 54ff0ea1. Original patch created a problem around properly switching themes, because of timing of switching observer to a new tab (previously available with a hint only. Bug: 1056586, 1054072 Change-Id: Iec9267e6eadd87725bf4609117b8d4d31a2fd24e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080692 Commit-Queue: Filip Gorski <fgorski@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Reviewed-by:
David Trainor <dtrainor@chromium.org> Cr-Commit-Position: refs/heads/master@{#746038}
-
Anna Malova authored
Bug: 1007815 Change-Id: I6b234a1e341f77b9d9a366d7931bcb6a76c3a41d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2082558Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746037}
-
Tanmoy Mollik authored
Add tests to check whether the infobar is shown for different errors. This cl also registers SyncErrorInfoBar as a ProfileSyncService state change observer to ensure that the infobar is dismissed as soon as the user resolves the issue from settings. Render tests will be added in a subsequent cl. Bug: 1031632 Change-Id: Ifb6b64e187ddce6129a43b0a7be1d76d8ff26ace Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2033244Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Commit-Queue: Tanmoy Mollik <triploblastic@chromium.org> Cr-Commit-Position: refs/heads/master@{#746036}
-
Phillis Tang authored
This patch updates some usage of |BluetoothDiscoverySession::Stop| in BluetoothBlueZTest to just destroy the session and removes some tests that are irrelevant after we get rid of the callbacks for |BluetoothDiscoverySession:Stop| params Bug: 991682 Change-Id: Id90d60790e4bb8654eca49d4f98fe5ce09fd646e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2076422Reviewed-by:
Reilly Grant <reillyg@chromium.org> Reviewed-by:
Ovidio de Jesús Ruiz-Henríquez <odejesush@chromium.org> Commit-Queue: Phillis Tang <phillis@chromium.org> Cr-Commit-Position: refs/heads/master@{#746035}
-
Becca Hughes authored
Adds a simple Media Feeds service and feature flag so we can start working on the feature. BUG=1056766 Change-Id: I74fe15de8ea6e3ee1c73dbb1ebe467ae9f195144 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2079265Reviewed-by:
David Roger <droger@chromium.org> Reviewed-by:
Tommi <tommi@chromium.org> Reviewed-by:
Tommy Steimel <steimel@chromium.org> Commit-Queue: Becca Hughes <beccahughes@chromium.org> Cr-Commit-Position: refs/heads/master@{#746034}
-
Anna Malova authored
Bug: 1007815 Change-Id: If81fbff53dd3d6dd1256e83b0c537d59a38aca8a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083321Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746033}
-
Anna Malova authored
Bug: 1007815 Change-Id: I0ff57980ab4420b8a3b8619dba3e4a3113159498 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080259Reviewed-by:
Asanka Herath <asanka@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746032}
-
Anna Malova authored
Callback is used multiple times to match URLs. Bug: 1007815 Change-Id: I828043de1cff402912b34b168b18106aff3012fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083173Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746031}
-
Stepan Khapugin authored
Fixes a bug that would close the popup when the suggestions are scrolled up or down. scroll the suggestion list. The keyboard should get dismissed on iPhone, but the suggestion list should stay on screen until "cancel" is pressed. Bug: 1039228 Test: On any page (and NTP), focus the omnibox and type something. Now Change-Id: Ie174223e2b963a14eea9fb31ea8ecd8243bbee3b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2081415 Commit-Queue: Stepan Khapugin <stkhapugin@chromium.org> Auto-Submit: Stepan Khapugin <stkhapugin@chromium.org> Reviewed-by:
Robbie Gibson <rkgibson@google.com> Cr-Commit-Position: refs/heads/master@{#746030}
-
Anna Malova authored
Bug: 1007815 Change-Id: Ib0b290b961ed4863373fe13a12828b83b04b2e8a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080260Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746029}
-
Anna Malova authored
Bug: 1007815 Change-Id: Ie1e1b8702a25fd797e672eb4180e10a528d5ae74 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2082380Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746028}
-
Min Qin authored
BUG=1055424 Change-Id: I620bf468a1dbae88437e9db7f2f2a7c733485194 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2071068 Commit-Queue: Min Qin <qinmin@chromium.org> Reviewed-by:
Xing Liu <xingliu@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#746027}
-
Jordan Taylor authored
This change adds phase to animation timeline. Phase currently only holds its read-only initial value of "inactive". Later updates will implement the full functionality for timeline states. Test verifies that animation.timeline.phase is accessible and equals initial value. It also verifies that the phase is readonly. Bug: 1046833 Change-Id: I1d887080f17692151ac97c7e89589dfefa185686 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2048943Reviewed-by:
Majid Valipour <majidvp@chromium.org> Commit-Queue: Jordan Taylor <jortaylo@microsoft.com> Cr-Commit-Position: refs/heads/master@{#746026}
-
Geoff Lang authored
BUG=1043460 Change-Id: Iceab4aa65cb50bbe3be706cdfdee1564b8158298 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2081517Reviewed-by:
Jonah Ryan-Davis (use @google.com) <jonahr@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org> Cr-Commit-Position: refs/heads/master@{#746025}
-
Yi Xu authored
TBR=thakis@chromium.org Bug: 1047648 Change-Id: Iaa0ede16a8b173ee35ab89bf6615dd418571d11c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080778Reviewed-by:
Yi Xu <yiyix@chromium.org> Commit-Queue: Yi Xu <yiyix@chromium.org> Cr-Commit-Position: refs/heads/master@{#746024}
-
Evan Stade authored
This matches WebView as well as Android TextView. If a user initially dismisses the Autofill popup, this context menu item allows them to access Autofill again. Bug: 1056468 Change-Id: I2bee9d5960b92ed6b726402f7f570b09cad2eda5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2079039 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Tao Bai <michaelbai@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#746023}
-
Stephen McGruer authored
This diff was generated by running: find . -type f -print0 | xargs -0 perl -pi -e "BEGIN { \$/ = undef; } s/assert_throws\(([ \n]*)\{ *[\"']?name[\"']? *: *['\"](TypeError|Error)[\"'] *\} *(, *.)/assert_throws_js(\1\2\3/gs" And then manually fixing up whitespace. Bug: 1051932 Change-Id: I36cd1e17f36e92fe4a28461189f058f0fb11885e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080432 Auto-Submit: Stephen McGruer <smcgruer@chromium.org> Reviewed-by:
Luke Z <lpz@chromium.org> Commit-Queue: Stephen McGruer <smcgruer@chromium.org> Cr-Commit-Position: refs/heads/master@{#746022}
-
Jan Wilken Dörrie authored
This change adds obtaining information about compromised credentials to the passwordsPrivate extension API. This is done via a getter, as well as an event that is fired when the credentials change. Furthermore, this change introduces a new PasswordCheckDelegate class that handles the implementation of these APIs. Bug: 1047726 Change-Id: I77d06a030cc823e665d5c49dec0eaed192104a65 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2072742 Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#746021}
-
Hesen Zhang authored
- Exposed count and last timestamp of negative events and timestamp of last shown notification to ClientOverview based on the popular demand of client. - Update unit test with these fields. Bug: 1053659 Change-Id: Ie4502deba4e2c9460d6583ad2e01b19707478674 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2079549Reviewed-by:
Xing Liu <xingliu@chromium.org> Commit-Queue: Hesen Zhang <hesen@chromium.org> Cr-Commit-Position: refs/heads/master@{#746020}
-
Owen Min authored
Extension request are moved out of the pending list once user confirm the notification. However, there is no need to upload these requests anymore as long as admin made an decision. Bug: 1006899 Change-Id: I332917f15abf27a96c0ba42736841fd0316b7dbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2079643 Commit-Queue: Owen Min <zmin@chromium.org> Reviewed-by:
Julian Pastarmov <pastarmovj@chromium.org> Cr-Commit-Position: refs/heads/master@{#746019}
-
Stefan Zager authored
This is CL is a pure refactor with no functional change. The change to plumb a RasterInvalidationFunction through RasterInvalidator::Generate will be needed for SquashAfterPaint, when the call path into raster invalidation will involve calls through both ContentLayerClientImpl and GraphicsLayer. BUG=548184 Change-Id: Ic3003369f8e66f8c74f6ca884352ded60e827775 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2082482Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Stefan Zager <szager@chromium.org> Cr-Commit-Position: refs/heads/master@{#746018}
-
Nazerke authored
This CL modernizes the InfobarContainerCoordinator - to use |browser| in the initializer - to remove the public property for webstatelist and dispatcher. - to use self.browser to get webstatelist and dispatcher values. Bug: 1029346, 892376, 1048412 Change-Id: I5cbe411bf7bdaae63552257c0f9613857bd67704 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2062270Reviewed-by:
Mark Cogan <marq@chromium.org> Reviewed-by:
Sergio Collazos <sczs@chromium.org> Commit-Queue: Nazerke Kalidolda <nazerke@google.com> Cr-Commit-Position: refs/heads/master@{#746017}
-
Anna Malova authored
Bug: 1007815 Change-Id: Ia387bfe81f5bbe7669859ad1212b9d8f1933d695 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080258Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#746016}
-
Sylvain Defresne authored
Enable ARC (automatic reference counting) when building iOS specific files from components/open_from_clipboard and remove the use of scoped_nsobject. Also modernize the BUILD.gn file to not depend on the global sources_assignment_filter and to use "frameworks" instead of "libs" to list dependencies on frameworks. Bug: 1051997, 1018739 Change-Id: I92afb6ebbfe551fef12bd9a9f24ed120e64a0a72 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2074277 Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Auto-Submit: Sylvain Defresne <sdefresne@chromium.org> Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Cr-Commit-Position: refs/heads/master@{#746015}
-
Luke Zielinski authored
This is carved off from crrev.com/c/2072639 to get around false positive on linux_layout_tests_composite_after_paint Bug: 937369 Change-Id: I0a968b13d36c4037ca7aeed20793afb000967aa5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080466Reviewed-by:
Aaron Gable <agable@chromium.org> Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Auto-Submit: Luke Z <lpz@chromium.org> Cr-Commit-Position: refs/heads/master@{#746014}
-
Xida Chen authored
This is a follow-up to the CL: https://chromium-review.googlesource.com/c/chromium/src/+/2062752 In that CL, I should have mark the Throughput ukm obsolete but forgot to do it. Bug: 1048780 Change-Id: I5e060b0b13ddf3bbdcee58e807da3cf0a15d9c92 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2079251Reviewed-by:
Bryan McQuade <bmcquade@chromium.org> Commit-Queue: Xida Chen <xidachen@chromium.org> Cr-Commit-Position: refs/heads/master@{#746013}
-
Kevin Ellis authored
When CovertTimingForCompositor was updated to use TimeDeltas instead of doubles, a DCHECK(!infinity) was changed to a DCHECK that the scaled time offset had an unsaturated value. As large as the value is, it is not infinite and legitimate values for animation arguments can trigger a numeric overflow. Instead, simply reject the animation on the compositor. Bug: 1054853 Change-Id: I941735b2ca098e111b39b2b99fbd32924b5d877b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080455Reviewed-by:
Majid Valipour <majidvp@chromium.org> Commit-Queue: Kevin Ellis <kevers@chromium.org> Cr-Commit-Position: refs/heads/master@{#746012}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/b03422a7370c..ae92244054c4 git log b03422a7370c..ae92244054c4 --date=short --first-parent --format='%ad %ae %s' 2020-03-02 ilnik@webrtc.org Clean VP8 header parser 2020-03-02 phoglund@webrtc.org Make scenario tests more tolerant on iOS. Created with: gclient setdep -r src/third_party/webrtc@ae92244054c4 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: chromium:1057551 Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: Iedfe74b07f95b17d9feac1633ac5abbd6b0d7314 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083223Reviewed-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@{#746011}
-
Mugdha Lakhani authored
The dependency on ChromeAutocompleteSchemeClassifier is resolved by passing it in to OmniboxUrlEmphasizerHelper in components. The dependency on UrlConstants is resolved by reusing ContentUrlConstants. Bug: 1052375 Change-Id: I28f2380544fe592870ff633cfb67a37a7817a623 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2075277 Commit-Queue: Mugdha Lakhani <nator@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#746010}
-
Carlos IL authored
Feature has been launched for a while, this cleans up the finch flag and chrome://flags setting. Change-Id: I3c831f234236db80350642f9e74ff5b2db44353f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2080859Reviewed-by:
Emily Stark <estark@chromium.org> Reviewed-by:
calamity <calamity@chromium.org> Commit-Queue: Carlos IL <carlosil@chromium.org> Cr-Commit-Position: refs/heads/master@{#746009}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/a7b1f947eb0a..b780372797ea Created with: gclient setdep -r src-internal@b780372797ea If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: None Tbr: jbudorick@google.com Change-Id: Ifb8873988fc58c90d9b7fa57bfca011ccc60d2e5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083331Reviewed-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@{#746008}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 34b020bf. With Chromium commits locally applied on WPT: d5cd6b98 "SharedWorker: Assign unique names to SharedWorkers to avoid unintentional matching" 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: jsbell@chromium.org: external/wpt/resources NOAUTOREVERT=true TBR=smcgruer No-Export: true Change-Id: I263d6707a99cf8502c17f45dfd35356f0556c825 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2083053Reviewed-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@{#746007}
-