- 30 Aug, 2019 40 commits
-
-
Findit authored
This reverts commit 2f2b401b. Reason for revert: Findit (https://goo.gl/kROfz5) identified CL at revision 692146 as the culprit for failures in the build cycles as shown on: https://analysis.chromium.org/waterfall/culprit?key=ag9zfmZpbmRpdC1mb3ItbWVyRAsSDVdmU3VzcGVjdGVkQ0wiMWNocm9taXVtLzJmMmI0MDFiZjQwMTdjNTA3ZDgyYTNlNjUyZmFjMTMzYWY3MTk2NGQM Sample Failed Build: https://ci.chromium.org/buildbot/chromium/android-archive-rel/4128 Sample Failed Step: compile Original change's description: > Android: Make Linker.java optimized out when use_chromium_linker=false > > Two fixes: > 1) Move static getters to a separate LibraryLoaderConfig.java > * Required because of the non-trivial class initializer in > LibraryLoader preventing inlining. > 2) Change JNI proguard rules to not -keep natives when the linker > is not used. > > TBR=agrieve # Renames > > Change-Id: I0f4a40af6168cbe7243f462c24d230d277e642ab > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1703155 > Commit-Queue: Andrew Grieve <agrieve@chromium.org> > Reviewed-by: Sam Maier <smaier@chromium.org> > Cr-Commit-Position: refs/heads/master@{#692146} Change-Id: Icfe9c719c7f1fdfa7b95acc41c98319972d50abb No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779168 Cr-Commit-Position: refs/heads/master@{#692197}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/56ba54cc03f3..2c5d48a6f0e4 git log 56ba54cc03f3..2c5d48a6f0e4 --date=short --no-merges --format='%ad %ae %s' 2019-08-30 lujc@google.com Use FramebufferID in place of GLuint handle 2019-08-30 syoussefi@chromium.org Move timer functionality from util/ to common/ 2019-08-30 syoussefi@chromium.org Vulkan: Split Vulkan docs from README.md into doc/ 2019-08-30 jmadill@chromium.org SystemInfo: Add Google VendorID. Created with: gclient setdep -r src/third_party/angle@2c5d48a6f0e4 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 cwallez@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/+/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_optional_gpu_tests_rel TBR=cwallez@chromium.org Bug: None Change-Id: I1ba17f206dcdf3f1bbf4869c381382591bd69292 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778649Reviewed-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@{#692196}
-
Erik Chen authored
On macOS, ExternalPopupMenu queued a timer event to dispatch an event to the main frame widget. This is incorrect and assumes that child frame is an in-process iframe. Instead, the event should be dispatched to the local root widget. Change-Id: I9a89496a333c6788621cca305d618900e3c4be88 Bug: 995981 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775600 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Auto-Submit: Erik Chen <erikchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#692195}
-
Antonio Gomes authored
PostCrossThreadTask() (and FWIW PostDelayedCrossThreadTask too) are thin wrapper to //base's equivalent in //base/task_runner.h. The goal is to ensure CrossThreadXXX is used when binding the functors. However, the wrappers miss the boolean return type of their //base equivalent. The limination makes switching some code from using base::Bind to use WTF::Bind if not impossible, at least not straightforward. eg.: 484 bool RTCVideoDecoderAdapter::ReinitializeSync( 485 const media::VideoDecoderConfig& config) { 486 DCHECK_CALLED_ON_VALID_SEQUENCE(decoding_sequence_checker_); 487 (...) 499 if (media_task_runner_->PostTask( 500 FROM_HERE, base::BindOnce(&RTCVideoDecoderAdapter::FlushOnMediaThread, 501 weak_this_, std::move(flush_success_cb), 502 std::move(flush_fail_cb)))) { 503 waiter.Wait(); 504 } ... in //third_party/blink/renderer/platform/peerconnection/rtc_video_decoder_adapter.cc. This CL pairs up both wrapper and wrapped behavior, so it unblocks the migration. BUG=787254 R=haraken@chromium.org Change-Id: I518bdd03496f58ffcd36906e19dfc5c4112a493d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778663 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#692194}
-
Gavin Williams authored
-Set a specific dialog width because the default cr-dialog width is too large -Reduced padding to bring the elements closer together Bug: 985108 Change-Id: I0b4f9a958b88a43669dcabceefbc9e9eb3a632da Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775219Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Bailey Berro <baileyberro@chromium.org> Commit-Queue: Gavin Williams <gavinwill@chromium.org> Cr-Commit-Position: refs/heads/master@{#692193}
-
Dominik Röttsches authored
The Windows 7 bot does currently not efficiently cache the font lookup table for layout tests because a cache directory is not configured. Also, Win7 layout tests failed with DCHECKs when a path was not configured. Disable FontSrcLocalMatching on Windows until this is properly addressed. Bug: 996027, 996167 Change-Id: Iaa21ab1a32cda73d8f7e3a2e6bd803c132105781 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778491Reviewed-by:
Ken Rockot <rockot@google.com> Reviewed-by:
Avi Drissman <avi@chromium.org> Auto-Submit: Dominik Röttsches <drott@chromium.org> Commit-Queue: Dominik Röttsches <drott@chromium.org> Cr-Commit-Position: refs/heads/master@{#692192}
-
Jamie Madill authored
No longer needed for any integration. Bug: angleproject:3320 Change-Id: Ie963ab28f9c9f05f57629fb78d5e1bdae6aa061b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779066 Commit-Queue: Jamie Madill <jmadill@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#692191}
-
manuk authored
The triage readme includes a link to bugs.chromium.org filtered to omnibox related but -component:UI>Browser>Omnibox issues. It mentions the view can optionally be filtered to the last week. This CL adds a link filtered to the last 2 weeks. Bug: 871898 Change-Id: Ic7d0d5175fb40e5b7d384c36a4e60768ba815c81 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779065Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: manuk hovanesian <manukh@chromium.org> Cr-Commit-Position: refs/heads/master@{#692190}
-
Tommy Li authored
Works great on my desktop. Needs further testing though. Making this flag available on Desktop. Bug: 925072 Change-Id: I77ced4f1b72694db389ba528b9f1d3cd648bd58d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775221Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Commit-Queue: Tommy Li <tommycli@chromium.org> Cr-Commit-Position: refs/heads/master@{#692189}
-
Ella Ge authored
This CL makes VariationsFieldTrialCreator::GetShortHardwareClass return base::SysInfo::HardwareModelName() so that we can use hardware class on Android in finch config. Bug: 999341 Change-Id: I4f33a07739005c7cd369a5eb5820725547b767a8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776980 Commit-Queue: Ella Ge <eirage@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Cr-Commit-Position: refs/heads/master@{#692188}
-
Xing Liu authored
DexLoaderTest#testLoadFromLocalDataDir is failing on Android O builder. TBR=hanxi@chromium.org Bug: 999363 Change-Id: Ied3e88b74580ab2395e31c651eba0643bb0290ff Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779063 Commit-Queue: Xing Liu <xingliu@chromium.org> Reviewed-by:
Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#692187}
-
Tommy Li authored
These histograms are not being removed, but instead just being moved to the internal histograms.xml file. See: cl/266207076 Change-Id: I5d538d0babeb1e9cc97098be562aef5c25b57a69 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776591 Commit-Queue: Tommy Li <tommycli@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Ender <ender@google.com> Cr-Commit-Position: refs/heads/master@{#692186}
-
John Budorick authored
Bug: 990885 Change-Id: I84a117cab1873469ad56115d955393f1111c7f66 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779221 Commit-Queue: John Budorick <jbudorick@chromium.org> Commit-Queue: Stephen Martinis <martiniss@chromium.org> Auto-Submit: John Budorick <jbudorick@chromium.org> Reviewed-by:
Stephen Martinis <martiniss@chromium.org> Cr-Commit-Position: refs/heads/master@{#692185}
-
Antonio Gomes authored
All its clients have been Onion soup'ed. BUG=787254, 919392 R=guidou@chromium.org, haraken@chromium.org Change-Id: Ibbef921caf036d9224de6195371b700057193add Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778661 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#692184}
-
Sonny Sasaka authored
This reverts commit 4e060f87. Reason for revert: Breaks connection with LE device, for example LE keyboard. Original change's description: > [Bluetooth] Enable by default peripheral battery UI indication. > > Bug: 785758 > Change-Id: I35f3270d0b61b8f0e3e3bde6d64f5b1c54f1a254 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1752913 > Commit-Queue: Ryan Hansberry <hansberry@chromium.org> > Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> > Auto-Submit: Ryan Hansberry <hansberry@chromium.org> > Reviewed-by: Kyle Horimoto <khorimoto@chromium.org> > Cr-Commit-Position: refs/heads/master@{#686638} TBR=khorimoto@chromium.org,hansberry@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 785758 Change-Id: Ief7a8ed1a5bcd925b8e94b4249f52aec89687aeb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778918Reviewed-by:
Sonny Sasaka <sonnysasaka@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Sonny Sasaka <sonnysasaka@chromium.org> Cr-Commit-Position: refs/heads/master@{#692183}
-
Connie Wan authored
This also disambiguates the Active, Open, and Pinned states from their -ness suffixed equivalents. The -ness versions are floats that are animation-specific -- TabAnimationState keeps track of the tweened values between 0 and 1. Most implementations only need to care about the binary non-suffixed versions. For now this is just a find-and-replace and does not change any boolean APIs (e.g. https://cs.chromium.org/chromium/src/chrome/browser/ui/views/tabs/tab_strip.cc?l=982,1004-1005&rcl=1ad5374935374da746af65d05b41104c711fd5cc). There are many examples in tab_strip.cc where ternary operators could be removed if a boolean were converted into enum values. That is next on the list of refactors. Bug: 966627 Change-Id: Icc2a0aaea0a06186d0bd3fefda645e97252968cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1764419 Commit-Queue: Connie Wan <connily@chromium.org> Reviewed-by:
Bret Sepulveda <bsep@chromium.org> Reviewed-by:
Taylor Bergquist <tbergquist@chromium.org> Cr-Commit-Position: refs/heads/master@{#692182}
-
Antonio Gomes authored
This is part of phase 1.11 on the design document [1]. [1] https://docs.google.com/document/d/1AJKVA5U4nDkyDB9p4ROrggWXadCxyy-grKaE9KS5vOU/ Since there are clients in //content directly referencing to this class, it was temporarily placed in blink/public/platform. BUG=787254 R=guidou@chromium.org, haraken@chromium.org Change-Id: I1b5db2b166f8b698701a8bfa31282f940ee46c4a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778006 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#692181}
-
Antonio Gomes authored
This is part of phase 1.9 on the design document [1]. [1] https://docs.google.com/document/d/1AJKVA5U4nDkyDB9p4ROrggWXadCxyy-grKaE9KS5vOU/ Since there are clients in //content directly referencing to this class, it was temporarily placed in blink/public/platform. Also, once its clients get moved to Blink, and so this API, it can switch over from STL types (std::string and vector) to its WTF counterparts. TODO is left. BUG=787254 R=guidou@chromium.org, haraken@chromium.org Change-Id: I3519318d5ae6f5b3641442f78d5e6116801dbbe9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778005 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#692180}
-
Kevin McNee authored
TargetAutoAttacher::UpdatePortals currently adds all inner WebContents including guest views. When devtools closes, SetAutoAttach clears |auto_attached_hosts_| of any portals, but leaves any guest views which leads to the failed DCHECK that all auto attached hosts have been removed. Now in UpdatePortals, we check that the inner contents is a portal before adding it. Bug: 961113 Change-Id: I758b3818c3f390f47c4020d88094387ee85d07e4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777022Reviewed-by:
Lucas Gadani <lfg@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Kevin McNee <mcnee@chromium.org> Cr-Commit-Position: refs/heads/master@{#692179}
-
sebsg authored
This reverts commit ba5eedd3. Reason for revert: <Did no fix the issues. Original change's description: > Revert "devtools: Prepare for service worker UI thread core." > > This reverts commit b9e16d2b. > > Reason for revert: Speculative revert for > > Unexpected Failures: > * http/tests/devtools/a11y-axe-core/elements/event-listeners-a11y-test.js > * http/tests/devtools/a11y-axe-core/security/security-origin-a11y-test.js > * http/tests/devtools/a11y-axe-core/sources/sources-editor-pane-a11y-test.js > > See builds > https://ci.chromium.org/p/chromium/builders/ci/WebKit%20Linux%20Leak/3809 > to > https://ci.chromium.org/p/chromium/builders/ci/WebKit%20Linux%20Leak/3842 > > Original change's description: > > devtools: Prepare for service worker UI thread core. > > > > The thread ServiceWorkerContextCore lives on (the "core thread") will move from > > the IO thread to the UI thread when the ServiceWorkerOnUI feature is enabled. > > > > This CL makes DevTools aware of the core thread instead of assuming the IO > > thread. This makes https/tests/devtools web_tests pass when the feature is > > enabled. > > > > Bug: 824858 > > Change-Id: I20e38f50998f4b0cd9d8b8cc43526665d92dbf94 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775655 > > Commit-Queue: Matt Falkenhagen <falken@chromium.org> > > Reviewed-by: Andrey Kosyakov <caseq@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#691689} > > TBR=falken@chromium.org,caseq@chromium.org > > Change-Id: I2d49a0fe27f033a7b8bd74e3a50fd9d78a4f1f58 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: 824858 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778403 > Reviewed-by: sebsg <sebsg@chromium.org> > Commit-Queue: sebsg <sebsg@chromium.org> > Cr-Commit-Position: refs/heads/master@{#692059} TBR=falken@chromium.org,caseq@chromium.org,sebsg@chromium.org Change-Id: I05e78908c372fd01350bd16eca9d45bb5095c152 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 824858 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779069Reviewed-by:
sebsg <sebsg@chromium.org> Commit-Queue: sebsg <sebsg@chromium.org> Cr-Commit-Position: refs/heads/master@{#692178}
-
Elly Fong-Jones authored
This is much more necessary with the view repaint optimization enabled via the EnableViewPaintOptimization feature. Without that optimization, the BubbleFrameView was getting repainted by accident: usually a control in the bubble would change in response to a theme change, and that would damage the BubbleFrameView's bounds rect, which would cause a repaint of the BubbleFrameView. Bug: 999208 Change-Id: Ia71d5e7474a00971502a87dcc2d9cea7c4368853 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1774787 Auto-Submit: Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Bret Sepulveda <bsep@chromium.org> Reviewed-by:
Bret Sepulveda <bsep@chromium.org> Cr-Commit-Position: refs/heads/master@{#692177}
-
James Cook authored
When SplitSettings is enabled the route to APPEARANCE doesn't exist, so clicking the link throws an error. Instead, open the browser setting in a new browser tab. Test: Open OS settings > Advanced > Accessibility > Manage accessibility features, click "Open appearance settings" Bug: 999354 Change-Id: Ibb1e42dccfef72a42779c330ba189061e398da4f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778815Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#692176}
-
Scott Violet authored
This is necessitated by Navigation not having const functions. It would be nice for Navigation to have const functions, but that isn't possible because we generally don't have const functions in content. BUG=none TEST=none Change-Id: I57f7385730e0eca623d8762512fff8403699c779 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779002Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#692175}
-
Xing Liu authored
This CL disable ClearBrowsingDataPreferencesTest#testImportantSitesDialogNoFiltering on O+ builders. TBR=dullweber@chromium.org Bug: 999361 Change-Id: I9d40b6f4013f310664f4726349298d63fb2b42bb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779004Reviewed-by:
Xing Liu <xingliu@chromium.org> Commit-Queue: Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#692174}
-
Antonio Gomes authored
This is phase 1.10 on the design document [1]. [1] https://docs.google.com/document/d/1AJKVA5U4nDkyDB9p4ROrggWXadCxyy-grKaE9KS5vOU/ BUG=787254 R=guidou@chromium.org, haraken@chromium.org Change-Id: Ibe985afbdd84f4e191cf49457cd5232d9796b7f6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778003Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#692173}
-
Lan Wei authored
When we add default tick duration of two-frame time, we see some tests memory leak which may end the tests when the page is still active, so I add promise to each tests, once the actions are all finished, we will call the test end in the promise callback. Bug: 606367 Change-Id: I679e7b066087b1a6ba68f79fccf9d5432e1f873c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1774713Reviewed-by:
Navid Zolghadr <nzolghadr@chromium.org> Commit-Queue: Lan Wei <lanwei@chromium.org> Cr-Commit-Position: refs/heads/master@{#692172}
-
Andrei Chulkov authored
Fix bug on Android O in which the view was changed not on the UI thread. Tested on API levels 26 and 27. Bug: 999360 Change-Id: I4bd7a335013262337140e9595e24b9d114ea3e3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778490 Commit-Queue: Andrei Chulkov <achulkov@google.com> Reviewed-by:
Ioana Pandele <ioanap@chromium.org> Cr-Commit-Position: refs/heads/master@{#692171}
-
Martin Kreichgauer authored
FidoReturnCode is a unified namespace for any higher-level status of a FidoRequestHandler. This was somewhat convient because security key operations share certain failure modes (e.g. kSuccess, kInvalidAuthenticatorResponse or kSoftPINBlock). On the other hand, it meant that users of each FidoRequestHandler needed to implicitly know which subset of FidoReturnCode was applicable to the particular subclass. This change replaces FidoReturnCode with separate status enums for each request handler. This gets us better type safety and smaller "switch(status) { ... }" blocks at the expense of having to duplicate the few common status values across request handlers. Bug: 876109 Change-Id: Ic0f5bfc08d6c2d4186bf4e2ca9bf99edf0bf6c87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1774825 Commit-Queue: Martin Kreichgauer <martinkr@chromium.org> Reviewed-by:
Dan Beam <dbeam@chromium.org> Reviewed-by:
Adam Langley <agl@chromium.org> Cr-Commit-Position: refs/heads/master@{#692170}
-
Caleb Rouleau authored
media router benchmark now lives in https://cs.chromium.org/chromium/src/tools/perf/contrib/media_router_benchmarks/ R=cliffordcheng@chromium.org, perezju@chromium.org Bug: 921000 Change-Id: If0a93cdfcfa41539b3828d2eee6cbb4719111eef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779163Reviewed-by:
Takumi Fujimoto <takumif@chromium.org> Commit-Queue: Caleb Rouleau <crouleau@chromium.org> Cr-Commit-Position: refs/heads/master@{#692169}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC cr-fuchsia+bot@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/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: Iaa7bb37749e3f4ce3b88b443ca48314a6192087f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779095Reviewed-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@{#692168}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/ab1d1a8d60dd..34facef63327 git log ab1d1a8d60dd..34facef63327 --date=short --no-merges --format='%ad %ae %s' 2019-08-30 chrome-bot@chromium.org Update config settings by config-updater. Created with: gclient setdep -r src/third_party/chromite@34facef63327 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 TBR=chrome-os-gardeners@google.com Bug: None Change-Id: Idd4c097cb7d08c600da0d2dc595f22e31261ddb6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778645Reviewed-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@{#692167}
-
Yue Zhang authored
Add a tab model observer so that when tab is added due to multi-window close or moving between multiple windows, force hiding the selection editor. Bug: 994647 Change-Id: If540754bf89c9d7b9d231058fabbfa11260e8b3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757294 Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Reviewed-by:
Mei Liang <meiliang@chromium.org> Cr-Commit-Position: refs/heads/master@{#692166}
-
Maggie Chen authored
This reverts commit 7296d844. Reason for revert: <Crashes caused by this CL has been fixed> Original change's description: > Revert "Enable GpuWatchdogV2 in Field trial testing for all platforms" > > This reverts commit 752f7f2c. > > Reason for revert: <Watchdog V2 causes crashes in the bots and it falls back to SwiftShader. bug 995372> > > Original change's description: > > Enable GpuWatchdogV2 in Field trial testing for all platforms > > > > Bug: 949839 > > Change-Id: I5939069144719c501209af3cda3b7693f61f8866 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1682315 > > Commit-Queue: Maggie Chen <magchen@chromium.org> > > Reviewed-by: Ilya Sherman <isherman@chromium.org> > > Reviewed-by: Zhenyao Mo <zmo@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#688375} > > TBR=isherman@chromium.org,zmo@chromium.org,magchen@chromium.org > > Change-Id: I2f64da411b2289265c1a9657fae85c083953bfb8 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: 949839 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761559 > Reviewed-by: Maggie Chen <magchen@chromium.org> > Commit-Queue: Maggie Chen <magchen@chromium.org> > Cr-Commit-Position: refs/heads/master@{#688690} TBR=isherman@chromium.org,zmo@chromium.org,magchen@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 949839 Change-Id: Ib92ed2d060f278ca9c53e78edf06822cbb2f487a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779222Reviewed-by:
Maggie Chen <magchen@chromium.org> Commit-Queue: Maggie Chen <magchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#692165}
-
minch authored
See https://docs.google.com/document/d/1DFKZsXCU4GySB9Ry8Bhd8k8sB7pO5wOz0GBcFmAq5B4/edit#heading=h.ekjb61oacmwf for the colors of kProminentIconButton. Bug: 982950 Change-Id: I921c053c2fcd5c6a30dcf26acc995ce060a90e67 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775499Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Commit-Queue: Min Chen <minch@chromium.org> Cr-Commit-Position: refs/heads/master@{#692164}
-
David Black authored
Screen context setting state is not being synced during Assistant pref registration which is causing any screen context related features to fail until the user explicitly goes to settings and toggles the setting off and back on again. Bug: b:138679823 Change-Id: Idbdc300282caf731487480b8bbc28397c9a8606b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777066Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Commit-Queue: David Black <dmblack@google.com> Cr-Commit-Position: refs/heads/master@{#692163}
-
Ben Pastene authored
Bug: 954508 Change-Id: Ie26ef9d68247828d2b2a4c9088ae03da856270d9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778592Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#692162}
-
Ryan Hamilton authored
ProcessAlternativeServices which is used by HttpStreamFactory and SpdySession. Change-Id: I3df00e4ec0bc1b55015e7ba0e1d9af913d7b161b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776735 Auto-Submit: Ryan Hamilton <rch@chromium.org> Reviewed-by:
Zhongyi Shi <zhongyi@chromium.org> Commit-Queue: Zhongyi Shi <zhongyi@chromium.org> Cr-Commit-Position: refs/heads/master@{#692161}
-
Jose Dapena Paz authored
blink::TransferableMessage was failing to build, as it had its move operator and assignment operators set as noexcept, but their default implementation depended on mojo::UserActivationSnapshotPtr to have noexcept too. This missed it because its type was mojom::InlinedStructPtr, that was missing noexcept. Bug: 819294 Change-Id: I0aaaf179a9f5240c4706cca5128568df45c0de25 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1768516Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: José Dapena Paz <jose.dapena@lge.com> Cr-Commit-Position: refs/heads/master@{#692160}
-
Adam Langley authored
This change adds byte (as opposed to std::string) based functions to save callers some copies and casts. Change-Id: Ib3306c6abf14c8ff849009e1752284bc693da44a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776793 Commit-Queue: Adam Langley <agl@chromium.org> Reviewed-by:
David Benjamin <davidben@chromium.org> Cr-Commit-Position: refs/heads/master@{#692159}
-
Mario Sanchez Prada authored
Convert both the implementation and clients in the browser and renderer processes for the blink.mojom.IDBCallbacks interface, and adapt unit tests. Bug: 955171, 978694 Change-Id: I14aa9ac688dc657b7303b5c04ad50c98e92eda31 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1774440 Commit-Queue: Mario Sanchez Prada <mario@igalia.com> Reviewed-by:
Chase Phillips <cmp@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
Oksana Zhuravlova <oksamyt@chromium.org> Cr-Commit-Position: refs/heads/master@{#692158}
-