- 18 Dec, 2019 40 commits
-
-
Ken Rockot authored
Migrates some directories off of deprecated base::Bind, base::Callback, etc, and onto the newer APIs. Specifically this covers: - components/services/ - components/signin/ - components/sync_preferences/ Fixed: 1007742, 1007733, 1007731 Change-Id: I38a1ef61cd324d5a4d220ada708c0c524368387a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972510Reviewed-by:
Erik Chen <erikchen@chromium.org> Reviewed-by:
vitaliii <vitaliii@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Commit-Queue: Ken Rockot <rockot@google.com> Cr-Commit-Position: refs/heads/master@{#725986}
-
chromium-autoroll authored
https://chromium.googlesource.com/external/github.com/google/shaderc/+log/4399459c1920..82a9846c4377 git log 4399459c1920..82a9846c4377 --date=short --first-parent --format='%ad %ae %s' 2019-12-18 rharrison@google.com Adding in missing APIs for MSL support in Dawn (#943) Created with: gclient setdep -r src/third_party/shaderc/src@82a9846c4377 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/shaderc-chromium-autoroll Please CC radial-bots+chrome-roll@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: radial-bots+chrome-roll@google.com Change-Id: I9882c1813526c43e80b609ef7c95512cdf60c975 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973939Reviewed-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@{#725985}
-
Elly Fong-Jones authored
Bug: 859169 Change-Id: Ia13d5991de4fc8a580309c129da2bd0a2dca4f95 Tbr: wangxianzhu@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972758Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#725984}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/f5a3b2d93548..c58ff87e3200 git log f5a3b2d93548..c58ff87e3200 --date=short --first-parent --format='%ad %ae %s' 2019-12-18 vapier@chromium.org cros_portage_upgrade: switch RunGit API to stdout/stderr names 2019-12-18 saklein@chromium.org Sdk/Update: Switch separatedebug to splitdebug. 2019-12-17 dhanyaganesh@chromium.org chromeos_config: Disable HW tests on veyron_rialto-release 2019-12-17 dhanyaganesh@chromium.org cros_test: self.tast is an array of size 1 2019-12-17 vapier@chromium.org cbuildbot: disable blamelist on Android PFQs 2019-12-17 tcwang@google.com chromeos_config: Remove AFDO generate and uprev from branch PFQ builder. 2019-12-17 vapier@chromium.org signing: imagefile: fix delete test under Python 3.7 2019-12-17 engeg@google.com OWNERS: add engeg 2019-12-17 dburger@chromium.org Extract goma extra env common to in / out chroot to helper. 2019-12-17 tomhughes@chromium.org config: Make hatch release builds sign accessory_rwsig Created with: gclient setdep -r src/third_party/chromite@c58ff87e3200 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/+/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:chromeos-kevin-rel Bug: None Tbr: chrome-os-gardeners@google.com Change-Id: I82e7b45d6d5c26fe1565c2d054efe874cf2abcad Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973937Reviewed-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@{#725983}
-
Elly Fong-Jones authored
Bug: 1035439 Change-Id: I60754b95ffd6c8bc4584ceaf7e80b95cec325c21 Tbr: danan@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973048Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#725982}
-
Michael Thiessen authored
Reason for revert: Broke Linux MSan Tests. See https://ci.chromium.org/p/chromium/builders/ci/Linux%20MSan%20Tests/21213 for first failing build. Reland fixes uninitialized variable in shell/common/shell_content_client.h Original change's description: > Decouple Scheme Registration from ContentMain > > Split off of > https://chromium-review.googlesource.com/c/chromium/src/+/1901591, see > that CL (and the bug) for additional context. > > The followup to this CL locks the SchemeRegistry on first use to ensure > schemes aren't added after GURL is used (which could lead to bugs). This > means that Scheme initialization must happen before ContentMain in order > for Java to use GURL before running ContentMain (I set the ContentClient > in JNI_Onload, and register schemes after the CommandLine is initialized > in content library_loader_hooks). > > Because of that, ContentMainDelegate had to have a ContentClient > available earlier, so I added an API to ContentMainDelegate for the > embedder to create their ContentClient on-demand. > > Because I wanted to avoid registering schemes multiple times, > url_schemes.cc had to be made stateful and remember whether schemes had > already been registered (Schemes could be registered by ContentMain > after JNI_Onload already registered them for Android). > > Doc: https://docs.google.com/document/d/1kDKqBaq-b6EbUm0F4ea7ARoksUcj1KUx3qxFuSXEwM4/edit > > Bug: 783819 > Change-Id: I0f6884b2def87dcca77e722cd3d3800017c18749 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1945926 > Reviewed-by: John Abd-El-Malek <jam@chromium.org> > Reviewed-by: Albert J. Wong <ajwong@chromium.org> > Commit-Queue: Michael Thiessen <mthiesse@chromium.org> > Cr-Commit-Position: refs/heads/master@{#725799} TBR=ajwong@chromium.org,mthiesse@chromium.org,jam@chromium.org Change-Id: I27a2a49dc23610350ec9f3f96ed9824e2eeed0d5 Bug: 783819 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973198 Commit-Queue: Michael Thiessen <mthiesse@chromium.org> Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Cr-Commit-Position: refs/heads/master@{#725981}
-
Henrique Nakashima authored
Cleanup code is not necessary anymore as long as the key is not used. Bug: 1022108 Change-Id: Ia3e6a8f7ec489fcc2e69caa511809a95525af317 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972783Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Cr-Commit-Position: refs/heads/master@{#725980}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/0a3fbd76a9e7..24f39c439784 git log 0a3fbd76a9e7..24f39c439784 --date=short --first-parent --format='%ad %ae %s' 2019-12-18 aerotwist@chromium.org Enables Karma to load images 2019-12-18 sigurds@chromium.org [timeline] Don't offer stop option during profiler initialization Created with: gclient setdep -r src/third_party/devtools-frontend/src@24f39c439784 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:1013624 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I4421ae515195a9e4ffdae562f53849c16751ac9b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973940Reviewed-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@{#725979}
-
Jonathan Backer authored
The clients of SharedContextState (OOP-R, SharedImage, and SkiaRenderer) do not care which GLSurface is bound as default FBO in the common case. Changing the current surface has a non-trivial cost on Android Adreno devices, even with virtual contexts enabled. This CL does a bit of caching to avoid these unnecessary calls. Change-Id: I0e3ec6308659644a725723295ef0b3109f22794f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1969736 Commit-Queue: Jonathan Backer <backer@chromium.org> Reviewed-by:
Peng Huang <penghuang@chromium.org> Cr-Commit-Position: refs/heads/master@{#725978}
-
Yue Zhang authored
Bug: 1033970 Change-Id: Ie613cdad54be7153a184c1babd8344660a950233 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972942Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Cr-Commit-Position: refs/heads/master@{#725977}
-
Mila Green authored
Add a new executable to the mac updater project. It copies the bundle to the appropriate ~/Library location and creates a launchd item to run "GoogleUpdate --ua" every 5 hours. Bug: 1031293 Change-Id: I02026497d31c5ca8739ffede4d86252e6ab55492 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1954549 Commit-Queue: Mila Green <milagreen@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Joshua Pawlicki <waffles@chromium.org> Reviewed-by:
Sorin Jianu <sorin@chromium.org> Cr-Commit-Position: refs/heads/master@{#725976}
-
Elly Fong-Jones authored
This test is flaky under asan & tsan. Bug: 1029250 Change-Id: I9fd12f89cafdd0d01de1b59941f7d0bf07212c1a Tbr: bokan@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972503Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#725975}
-
James Cook authored
Chrome OS sync and browser sync can both be encrypted with a shared passphrase. However, a user can choose to leave OS sync enabled and browser sync disabled, or vice versa. Show the sync passphrase error notification when either feature is enabled. Bug: 1033222, 1013466 Test: updated unit_tests Change-Id: If4b8eddb76f7c9be1de3a7f094c692b2d03b7c6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972899 Commit-Queue: James Cook <jamescook@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#725974}
-
Eugene But authored
Add semi colon to avoid breaking Xcode indexing. Bug: 1015113 Change-Id: I9dff5b679b24267e3edc0ac83ce5f52a294ded9b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972938 Commit-Queue: Rohit Rao <rohitrao@chromium.org> Auto-Submit: Eugene But <eugenebut@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#725973}
-
Raymond Toy authored
Change destroy_cb_ to be base::OnceClosure Bug: 1007799 Change-Id: I86335290007d31af994d7ddf22c536645aea6595 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972934 Commit-Queue: Raymond Toy <rtoy@chromium.org> Reviewed-by:
Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#725972}
-
Clemens Arbesser authored
Before this CL, if no cc network filtering was specified, all credit cards would be rejected. Bug: b/146424039 Change-Id: I49e0013b8dce9deb255fcb7549bdccd0c57264fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973819 Auto-Submit: Clemens Arbesser <arbesser@google.com> Reviewed-by:
Sandro Maggi <sandromaggi@google.com> Commit-Queue: Clemens Arbesser <arbesser@google.com> Cr-Commit-Position: refs/heads/master@{#725971}
-
Mitsuru Oshima authored
Bug: 1034078, Test: Covered by unittest Change-Id: If9dd8a777b83a02e572c2f1953e70e5ce6d4a439 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1968241 Commit-Queue: Mitsuru Oshima <oshima@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#725970}
-
Elly Fong-Jones authored
Bug: 1029778 Change-Id: Icc3de412daa929da50c8aef9f2d5792f6a336538 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972306Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#725969}
-
Etienne Bergeron authored
This CL is fixing the regression in selection drawing (see crbug/1033829). The bug is caused by an incorrect handling of selection_color(...). The color is applied twice. The selection color should only applied while drawing to avoid re-doing the layout when selection changed. The code of RenderText::Draw(...) is taking into account the selection and is drawing the text in the right color. The selection color should *not* be copied in the |layout_colors_|. To be able to test this code, this CL is also adding a test_api::Draw(...) and a way to mock calls to the canvas. Previously, the test used DrawVisualText(...) and a mock version of class SkiaTextRenderer. Unfortunately, that code doesn't handle the selection. The Draw(...) test API is using the same TextLog class. Bug: 1033829, 1025561 Change-Id: Ia84c5c03ed33675dbf3a04b0359b65b21dba323e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972814 Commit-Queue: Etienne Bergeron <etienneb@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#725968}
-
Antonio Gomes authored
... to use the corresponding WTF constructions. BUG=787254 R=haraken@chromium.org Change-Id: I195720eba44a4ba96f9b82b7ebb3684a1fa3349e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973992Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#725967}
-
Francois Doray authored
Failures were due to a race in Mojo notifications for renderer tear-down and setup. Let's see if the problem still exists. Bug: 874851 Change-Id: Ia28012b8189a5236879abf444bac9295d9159453 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972532 Commit-Queue: Chris Hamilton <chrisha@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#725966}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/ddd35ae7e933..a8a5c96f0b89 Created with: gclient setdep -r src-internal@a8a5c96f0b89 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: I977ff88397c8783f2c69169a745e6f07de7bafe5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973935Reviewed-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@{#725965}
-
Kaan Alsan authored
This is a speculative fix to try to deflake the layout test on Mac. Bug: 1034789 Change-Id: I8fff3f743f079ec593fb76f6797f7dc955022aab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973960Reviewed-by:
Majid Valipour <majidvp@chromium.org> Commit-Queue: Majid Valipour <majidvp@chromium.org> Cr-Commit-Position: refs/heads/master@{#725964}
-
Matt Menke authored
Previously, it would make NetworkIsolationKeys replace hostnames with eTLD+1's regardless of scheme. Bug: 1030824 Change-Id: I79889920ed99f8d13d7a470e6aa2b2f7ac480f6c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972577Reviewed-by:
Shivani Sharma <shivanisha@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#725963}
-
Robert Sesek authored
Change-Id: I8017b1b14fa3d83abb2dfd3b59dc7ffcc84c0696 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972290Reviewed-by:
ccameron <ccameron@chromium.org> Commit-Queue: Robert Sesek <rsesek@chromium.org> Cr-Commit-Position: refs/heads/master@{#725962}
-
Julian Pastarmov authored
BUG=996079 Change-Id: Ifb9ea9b56322ba9cbc0086b94d33894f3b90036e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1952324 Commit-Queue: Julian Pastarmov <pastarmovj@chromium.org> Reviewed-by:
Karan Bhatia <karandeepb@chromium.org> Reviewed-by:
Gustavo Sacomoto <sacomoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#725961}
-
Antonio Gomes authored
... to use the corresponding WTF::Bind constructions. BUG=787254 R=haraken@chromium.org Change-Id: Iec27b7bf28c3c1504cb068383e0196e698e2ca25 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973991 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Commit-Queue: Kentaro Hara <haraken@chromium.org> Auto-Submit: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#725960}
-
Alexander Dunaev authored
This CL fixes the logic broken in 1962258 that lead to nullptr dereference. R=thomasanderson@chromium.org Bug: 1014860 Change-Id: Iad723c8ab1468455411b0456f5fb016fc880b12d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973432 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Cr-Commit-Position: refs/heads/master@{#725959}
-
Roman Sorokin authored
Bug: 1035376 Change-Id: Ieb26a3441e2595b60f4d4d865c4a3969b3e143ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973911Reviewed-by:
Roman Aleksandrov <raleksandrov@google.com> Commit-Queue: Roman Sorokin [CET] <rsorokin@chromium.org> Cr-Commit-Position: refs/heads/master@{#725958}
-
Denis Kuznetsov authored
In order to extract some browser tests to a separate build target we need to reduce circular dependencies in code. This CL is a prerequisite for extracting profile_helper to public part of /c/b/chromeos/BUILD.gn that can be used by child dependencies without introducing dependency cycles. Changes not in c/b/chromeos/profiles fixes "include what you use" errors. TBR=sky@chromium.org Bug: 1030832 Change-Id: I8003412d364554681b4a1a69c0cf45101d184c7e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1971925Reviewed-by:
Denis Kuznetsov [CET] <antrim@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Denis Kuznetsov [CET] <antrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#725957}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/2abdc799d974..0a3fbd76a9e7 git log 2abdc799d974..0a3fbd76a9e7 --date=short --first-parent --format='%ad %ae %s' 2019-12-18 bmeurer@chromium.org Remove restriction to eager (popover) evaluation. Created with: gclient setdep -r src/third_party/devtools-frontend/src@0a3fbd76a9e7 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:1033022,chromium:995036 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I5b26dd5a087473ffa74b792562403b85d1928318 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973934Reviewed-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@{#725956}
-
Mike Wittman authored
pthread_getattr_np requires a following pthread_attr_destroy, which was missing in GetThreadStackBaseAddressImpl(). Change-Id: Ic6a59e5be834a4d4c0f981a3a60cab1b3926cfa2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972264 Auto-Submit: Mike Wittman <wittman@chromium.org> Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Reviewed-by:
Etienne Pierre-Doray <etiennep@chromium.org> Cr-Commit-Position: refs/heads/master@{#725955}
-
Antonio Gomes authored
... to use the corresponding WTF constructions. BUG=787254 R=haraken@chromium.org Change-Id: I596f10d9037e007d703d4ac22cbf885769f05f96 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973990 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Commit-Queue: Kentaro Hara <haraken@chromium.org> Auto-Submit: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#725954}
-
Yuki Shiino authored
Bug: 839389 Change-Id: I6534da9053796ea18f7dd02aa5673cf4072187c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1971665Reviewed-by:
Hitoshi Yoshida <peria@chromium.org> Commit-Queue: Yuki Shiino <yukishiino@chromium.org> Cr-Commit-Position: refs/heads/master@{#725953}
-
Sylvain Defresne authored
Chrome and WebView shell can use provider from internal. Those provider may be based on private framework that export the same symbols as MaterialComponents framework. Provide gn variable to control whether the framework is linked or not. If MaterialComponents is built but not linked, then it is the responsibility of the provider to export the necessary symbols. Bug: 1017165, 1022981 Change-Id: I374bde66a41c956b3cd14d3bb14f8c8e77bfbe3f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1971847 Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Reviewed-by:
Yuwei Huang <yuweih@chromium.org> Cr-Commit-Position: refs/heads/master@{#725952}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/21df075cab00..e6a2ad81ab40 git log 21df075cab00..e6a2ad81ab40 --date=short --first-parent --format='%ad %ae %s' 2019-12-18 rmistry@google.com Build and push skia-release and skia-wasm-release docker images Created with: gclient setdep -r src/third_party/skia@e6a2ad81ab40 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 borenet@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: borenet@google.com Change-Id: Ib34926eb4d97c7767c2135facf355c9c332b4644 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973930Reviewed-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@{#725951}
-
Clemens Arbesser authored
This CL also changes potentially problematic vector graphics in a test to standard raster graphics. Bug: 1033877 Change-Id: I46ac4434563693fe7fa6633135efeed44c9085f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1972143 Auto-Submit: Clemens Arbesser <arbesser@google.com> Reviewed-by:
Sandro Maggi <sandromaggi@google.com> Commit-Queue: Clemens Arbesser <arbesser@google.com> Cr-Commit-Position: refs/heads/master@{#725950}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/5b3d06c520db..3be20911d9a3 git log 5b3d06c520db..3be20911d9a3 --date=short --first-parent --format='%ad %ae %s' 2019-12-18 lalitm@google.com trace_processor: fix compile on Android 2019-12-18 lalitm@google.com trace_processor: fix compile 2019-12-18 lalitm@google.com Merge "trace_processor: migrate heap profile allocation table" 2019-12-18 fmayer@google.com Merge "Use unique_ptr instead of FreeLine." Created with: gclient setdep -r src/third_party/perfetto@3be20911d9a3 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: I4fde3189e8fad7f8033f5a24cb867e36dc4824d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1973933Reviewed-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@{#725949}
-
Alice Wang authored
This CL cleans up the argument resources in ConfirmManagedSyncDataDialog.create. Bug: 1033914 Change-Id: I16dab906eab3612635fd544d12b867b32289fef6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1967465 Commit-Queue: Alice Wang <aliceywang@chromium.org> Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#725948}
-
Ross McIlroy authored
This CL was created automatically with tools/perf/update_wpr script BUG=1028072 Change-Id: Ieaab4e86a1bb465c7aaa0d757555f4c333fcab1e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1971834 Auto-Submit: Ross McIlroy <rmcilroy@chromium.org> Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Commit-Queue: Ross McIlroy <rmcilroy@chromium.org> Cr-Commit-Position: refs/heads/master@{#725947}
-