- 24 Feb, 2020 40 commits
-
-
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: I45fbe737c714780a3c15044fca04c3ec58cfa882 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2071275Reviewed-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@{#744121}
-
Katie D authored
Reader mode view page title now says "Loading..." instead of "Simplified view" on Desktop before the article title is populated. The article title is followed by "- Reader mode" to provide an indication to screen reader users that they are in a distilled page tab. Bug: 1016461 Change-Id: Ie7ab1ab1e89090e182c4c556bd22878ee876b818 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2052487 Commit-Queue: Katie Dektar <katie@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#744120}
-
Caroline Rising authored
Make popped out extensions stay popped out if they have a context menu shown in the new extensions toolbar container. Previously we would only check if a context menu was running when trying to hide a popped out extension. In the case where the context menu was not yet running when this happened then the popped out extension would be hidden when it shouldn't be. This change lets the ExtensionsToolbarContainer keep track of an extension with an open context menu and adjust visibility accordingly. Bug: 943702 Change-Id: I547b16eb324852c9559238c646d189c39892fb55 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065009 Commit-Queue: Caroline Rising <corising@chromium.org> Reviewed-by:
Peter Boström <pbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#744119}
-
Esmael El-Moslimany authored
Bug: 1054741 Change-Id: Iae1362c77859c122c7100886788c64682aa569b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070735Reviewed-by:
Peter Kasting <pkasting@chromium.org> Commit-Queue: Esmael Elmoslimany <aee@chromium.org> Cr-Commit-Position: refs/heads/master@{#744118}
-
Tom McKee authored
Before this change, running javascript like `performance.mark(...)` would result in a callstack like MakeGarbageCollected<PerformanceMark>(...) PerformanceMark::Create(<overload-1>) UserTiming::CreatePerformanceMark(...) Performance::mark() <v8-bindings-layer> `performance.mark(...)` while running script like `new PerformanceMark(...)` would result in a callstack like MakeGarbageCollected<PerformanceMark>(...) PerformanceMark::Create(<overload-1>) UserTiming::CreatePerformanceMark(...) PerformanceMark::Create(<overload-2>) `new PerformanceMark(...)` Note that, since the bindings layer calls into PerformanceMark::Create directly, PerformanceMark had to call UserTiming which had to call back to PerformanceMark. Apart from being a cyclic dependency, this also lead to confusion around which constraints needed to be checked at which points. This CL breaks the cyclic dependency between UserTiming and PerformanceMark by pushing all the validation into a single PerformanceMark::Create function. Along with this change comes better UseCount tracking for UserTimingL3 in the case where script runs `new PerformanceMark(...)`. Bug: 805566 Change-Id: Ic648b097734655b2c0e55db95e738b48bc8826c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2003552 Commit-Queue: Tom McKee <tommckee@chromium.org> Reviewed-by:
Nicolás Peña Moreno <npm@chromium.org> Cr-Commit-Position: refs/heads/master@{#744117}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/bfe5a68c1e31..19304d88c8be git log bfe5a68c1e31..19304d88c8be --date=short --first-parent --format='%ad %ae %s' 2020-02-24 nifong@google.com Move all canvaskit example resources to CDN 2020-02-24 herb@google.com Remove SkExclusiveStrikePtr. Replace it with sk_sp<SkStrike> Created with: gclient setdep -r src/third_party/skia@19304d88c8be 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 jlavrova@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: jlavrova@google.com Change-Id: Ieb238fd608000b4cede306771a41e47acf13c4ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2071115Reviewed-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@{#744116}
-
David Black authored
In response processing v1, UI elements are immediately added to the response and are processed in unison. In response processing v2, UI elements are pended while they each are processed individually. Only then are they added to the response as being ready for rendering, being careful to maintain the correct order of insertion. Bug: b:2063264 Change-Id: Ia487b0f7b99850314a6c83493e9f72af1b8b7b83 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065410Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Commit-Queue: David Black <dmblack@google.com> Cr-Commit-Position: refs/heads/master@{#744115}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/c7f63a01d344..e3aee0b42a11 git log c7f63a01d344..e3aee0b42a11 --date=short --first-parent --format='%ad %ae %s' 2020-02-24 aleino@nvidia.com Remove skip dEQP-GLES31 test now passing on NVIDIA 2020-02-24 julien.isorce@chromium.org Reland "Provide default implementation of rx::DisplayEGL" Created with: gclient setdep -r src/third_party/angle@e3aee0b42a11 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 geofflang@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: geofflang@google.com Change-Id: Ie2239025241f848b292d26f5e45454d2bec0081d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070778Reviewed-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@{#744114}
-
Xing Liu authored
We use auto generated Java enum based on a c++ enum. However the Java API RecordHistogram.recordEnumeratedHistogram() need to pass a maximum value +1 to the auto generated value. TBR=dtrainor@chromium.org,isherman@chromium.org Bug: 1054957 Change-Id: Ib6a8d9695fceab7bffaef4b765277a6a4f5d69f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068754Reviewed-by:
Xing Liu <xingliu@chromium.org> Commit-Queue: Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#744113}
-
chromium-autoroll authored
Roll broadwell AFDO profile from 82-4028.0-1581935713-benchmark-82.0.4065.0-r1 to 82-4044.15-1582543985-benchmark-82.0.4065.0-r1 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/cros-afdo-broadwell-chromium Please CC c-compiler-chrome@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 Tbr: c-compiler-chrome@google.com Change-Id: I1ccf82c2152010c0af12446d9245043da0ec5b6a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2071276Reviewed-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@{#744112}
-
chromium-autoroll authored
Roll silvermont AFDO profile from 82-4044.15-1581938780-benchmark-82.0.4065.0-r1 to 82-4044.25-1582542147-benchmark-82.0.4065.0-r1 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/cros-afdo-silvermont-chromium Please CC c-compiler-chrome@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 Tbr: c-compiler-chrome@google.com Change-Id: Ifce8fdfc8923b5ff83e1e33f3f3665111aa427fb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070976Reviewed-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@{#744111}
-
Eric Willigers authored
The test BookmarkAppWindowAshCrash in ExtensionUninstallDialogViewBrowserTest was using extensions functions to install a bookmark app. We now use web_app:: functions so the test will continue to pass when we enable the DesktopPWAsWithoutExtensions flag. Bug: 1052722 Change-Id: I2745e434d12f6386f69509308bab3076efa7ad44 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067785Reviewed-by:
Alan Cutter <alancutter@chromium.org> Reviewed-by:
Finnur Thorarinsson <finnur@chromium.org> Auto-Submit: Eric Willigers <ericwilligers@chromium.org> Commit-Queue: Eric Willigers <ericwilligers@chromium.org> Cr-Commit-Position: refs/heads/master@{#744110}
-
Alex Newcomer authored
Check whether the overview animation has finished showing or hiding. To be used in CrOS tast tests. Bug: 1052211 Change-Id: Ib8063d61302a66412ee0f55b49ae0a5fc5df945a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2055694 Commit-Queue: Alex Newcomer <newcomer@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Toni Baržić <tbarzic@chromium.org> Reviewed-by:
Alex Newcomer <newcomer@chromium.org> Auto-Submit: Alex Newcomer <newcomer@chromium.org> Cr-Commit-Position: refs/heads/master@{#744109}
-
Matthew Mourgos authored
TBR=oshima@chromium.org Bug: 1052441, 1022544 Change-Id: Ifc0399af5c8d4f32322b685161d8fea2aa6867fa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067797Reviewed-by:
Matthew Mourgos <mmourgos@chromium.org> Commit-Queue: Matthew Mourgos <mmourgos@chromium.org> Cr-Commit-Position: refs/heads/master@{#744108}
-
Adrienne Walker authored
This is just preparation for making moving this code easier. Bug: 1015214 Change-Id: I379b6d1c8be4f61f9e13329c6ddae590fd8c80a3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068929 Auto-Submit: enne <enne@chromium.org> Commit-Queue: Daniel Murphy <dmurph@chromium.org> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Cr-Commit-Position: refs/heads/master@{#744107}
-
Joel Hockey authored
For Autogenerated, and extension-based themes, use frame color for COLOR_STATUS_BUBBLE rather than toolbar. When PWAs set a theme-color, status bubble bg will match frame. crbug.com/1053823#c16 Bug: 1053823 Change-Id: I3a159a5c25a038ab78594c98b7208b3066a82181 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067763 Commit-Queue: Joel Hockey <joelhockey@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#744106}
-
Saman Sami authored
We are seeing invalid frame tokens in the wild. Add some crash keys before taking a dump to help investigate this issue. Bug: 1045372 Change-Id: I3e8546ff214c2ee2f6d2bda3cf4b64d277cce920 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2042290 Commit-Queue: Jonathan Ross <jonross@chromium.org> Reviewed-by:
Jonathan Ross <jonross@chromium.org> Cr-Commit-Position: refs/heads/master@{#744105}
-
chromium-autoroll authored
Roll airmont AFDO profile from 82-4044.5-1581936665-benchmark-82.0.4065.0-r1 to 82-4044.25-1582540590-benchmark-82.0.4065.0-r1 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/cros-afdo-airmont-chromium Please CC c-compiler-chrome@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 Tbr: c-compiler-chrome@google.com Change-Id: I608cd8043babc2c20590505a074645239339d3b8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2071117Reviewed-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@{#744104}
-
Toby Huang authored
Attempting to show HaTS for supervised users will cause ChromeOS to crash because incognito mode is disabled. Disable HaTS until it is ready for supervised users. Bug: 1055022 Change-Id: I1b7286410a6c2b9c08145862d45944c320ee44c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070111 Auto-Submit: Toby Huang <tobyhuang@chromium.org> Reviewed-by:
Malay Keshav <malaykeshav@chromium.org> Commit-Queue: Toby Huang <tobyhuang@chromium.org> Cr-Commit-Position: refs/heads/master@{#744103}
-
Collin Baker authored
Currently, events that would be dispatched to a disabled view are discarded instead. This seems to be a holdover from old event handling code and not necessary anymore. To allow pre-target handlers to still see these events, this CL changes these methods to dispatch the events to the closest enabled ancestor view. Bug: 1043374, 1011082 Change-Id: I82bca238e98b9b820c0c7619a5880fbf3497d886 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2029087 Commit-Queue: Collin Baker <collinbaker@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#744102}
-
Manu Cornet authored
It is unused and retrieving the login status from the session controller is easy enough anyway. Bug: 1042918, 1047012 Change-Id: I06afc5a4f724a45814e76b3bd7af79eab42489a6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070815Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Manu Cornet <manucornet@chromium.org> Cr-Commit-Position: refs/heads/master@{#744101}
-
inglorion authored
This uses the new debug info size reduction feature introduced in https://github.com/llvm/llvm-project/commit/651128f5). This was previously enabled for other platforms (crrev.com/c/2040441). For ChromeOS, we needed to upgrade the compiler to get the new feature. Now that that is done, we can enable the feature for ChromeOS, too. Bug: 1050118 Change-Id: Ide359fcb8d1e748bb321927055802bf6ebd7fad2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067741 Commit-Queue: Bob Haarman <inglorion@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#744100}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/1cb4a3a99d23..05a90eab354e git log 1cb4a3a99d23..05a90eab354e --date=short --first-parent --format='%ad %ae %s' 2020-02-24 primiano@google.com Merge "Revert "UI: Add CSP policy"" Created with: gclient setdep -r src/third_party/perfetto@05a90eab354e 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: I6118d0ec4c0ed8105b1c3a6eed3862380fec5327 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068283Reviewed-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@{#744099}
-
Ahmed Fakhry authored
- On sign in of the primary user, desks count and their names will be restored to their most recent state for this user. - Desks addition/removal/renaming triggers updates to the desks restore prefs. - The data structure selected for storing and restoring desks was chosen to be very simple: * A list of desk names. * The size of the list indicates the number of desks that needs to be created on restore. * An empty desk name is treated as a placeholder for a desk that wasn't renamed by the user and should be default-named. * Non empty desks names are the user-modified desks names. - In a multi user session, changes to the desks made by secondary users will be persisted in the prefs of the primary user only. It will never affect the prefs for those secondary users. BUG=1040980 TEST=Manually, added new tests. Change-Id: I85000f9bba32419ef907f26a03c34f25ff67686f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067358 Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#744098}
-
James Cook authored
The code in //chromeos/components/drivefs runs in the browser process on the UI thread. There aren't any plans to move it out of process. It can directly use the C++ IdentityManager instead of using the mojo Identity Service. This will eliminate the last client of the Identity Service, making it easier to refactor or delete it. Convert DriveFsAuth to use PrimaryAccountAccessTokenFetcher, which automatically handles waiting for / getting information about the primary account. Migrate the tests to use IdentityTestEnvironment, specifically the helpers for access token requests. This requires rewriting tests that used GMock on the Identity Service mojo API, but ends up being less code overall. Test: rewrite the chromeos_components_unittests Test: Google Drive still works in File Manager to read / write / copy files. Bug: 1054673 Change-Id: If83be823ee2ab1936289e21b2c50451004557c17 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063419 Commit-Queue: James Cook <jamescook@chromium.org> Reviewed-by:
Austin Tankiang <austinct@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#744097}
-
Ana Salazar authored
Bug: 1049273 Change-Id: I8e01516825cf26118e454ed640884fcc6f365ecf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2071035 Commit-Queue: Ana Salazar <anasalazar@chromium.org> Commit-Queue: Alex Newcomer <newcomer@chromium.org> Reviewed-by:
Alex Newcomer <newcomer@chromium.org> Cr-Commit-Position: refs/heads/master@{#744096}
-
Samuel Huang authored
This reverts commit 64e434bf. Reason for revert: Causes ASAN failure, because range-based for-loop is used when it's not supposed to (per comment in code). Original change's description: > AppCache: Fix clang-tidy warnings. > > This CL fixes all currently-enabled clang-tidy warnings in > //content/browser/appcache. The main benefit here is to prevent > distractions while pursuing further refactoring in AppCache. > > This CL introduces no functional changes. > > Change-Id: I81176a48ac8a3362d75cdde6672e462590cb397f > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2069849 > Commit-Queue: Victor Costan <pwnall@chromium.org> > Reviewed-by: Joshua Bell <jsbell@chromium.org> > Cr-Commit-Position: refs/heads/master@{#744051} TBR=jsbell@chromium.org,pwnall@chromium.org Change-Id: I2f78baace7d7c4adb6f5e9f2ed74866e9a5f0c5c No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070838Reviewed-by:
Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#744095}
-
Adrienne Walker authored
This will help move indexeddb to components/services/storage. Bug: 1015214 Change-Id: Id391961bcb8c3b19e44b650dc33c8e729b845183 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068872 Auto-Submit: enne <enne@chromium.org> Commit-Queue: Daniel Murphy <dmurph@chromium.org> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Cr-Commit-Position: refs/heads/master@{#744094}
-
Peng Huang authored
RasterDecoder doesn't use GL for Vulkan, Dawn, etc. So GpuChannelManager::DoWakeUpGpu needs to make sure to use a decoder_context() which uses GL to call MakeCurrent. Bug: None Change-Id: I22249d060d8b79728a649ccc041ff426b6d76b6c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070374 Commit-Queue: Peng Huang <penghuang@chromium.org> Reviewed-by:
Jonathan Backer <backer@chromium.org> Cr-Commit-Position: refs/heads/master@{#744093}
-
Orin Jaworski authored
Bug: 893183 Change-Id: I864b07ae2c53bf1ee93f8d1d0a8e85597a93afc8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070595Reviewed-by:
manuk hovanesian <manukh@chromium.org> Commit-Queue: Orin Jaworski <orinj@chromium.org> Cr-Commit-Position: refs/heads/master@{#744092}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/f6d87d0f..def23d3c Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I0ffb33c191dbf2793aeca9beef9dd85b4a3e01ee Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068581Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#744091}
-
Dan Harrington authored
This includes the following changes: https://chromium.googlesource.com/feed/+/aa5e906377aaec1263ec77fe66c0e069217af54d https://chromium.googlesource.com/feed/+/94aa97321638b5d42031fa92f6f6ef83c1c91b49 https://chromium.googlesource.com/feed/+/52bcecef85fd6c49c850199c00ba88ec274b1585 Change-Id: I11ed1aa4fea5c884313d8e5edfb0c0ebea97d26c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070687Reviewed-by:
Ian Wells <iwells@chromium.org> Commit-Queue: Dan H <harringtond@chromium.org> Cr-Commit-Position: refs/heads/master@{#744090}
-
Guido Urdaneta authored
This intends to address a series of flakes caused by problems with Pulse Audio on some bots. Bug: 1047655 Change-Id: Iade028ea431cdaa8df3255a246c5f23c0365ff9b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066911 Commit-Queue: Guido Urdaneta <guidou@chromium.org> Auto-Submit: Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#744089}
-
Sophie Chang authored
This is a reland of eed7024d TBR=tbansal@chromium.org for chrome/browser/predictors/... Original change's description: > Add support for loading predictor to use hints from optimization guide > > Will add metrics in a subsequent CL. This shouldn't affect any current > metrics since the support is all behind a feature flag. > > Bug: 1050101 > Change-Id: If6f98dbae86bb5842803cdb3c1b052d99711e62f > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2067241 > Commit-Queue: Sophie Chang <sophiechang@chromium.org> > Reviewed-by: Ryan Sturm <ryansturm@chromium.org> > Reviewed-by: Tarun Bansal <tbansal@chromium.org> > Cr-Commit-Position: refs/heads/master@{#743767} Bug: 1050101 Change-Id: I796d2bbd322fee835bfc42f3f3bc903b65554291 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068313 Commit-Queue: Sophie Chang <sophiechang@chromium.org> Reviewed-by:
Ryan Sturm <ryansturm@chromium.org> Cr-Commit-Position: refs/heads/master@{#744088}
-
Anastasia Helfinstein authored
Simplify BackButtonNode.findAutomationNode() to be more in line with the rest of the Switch Access code. Bug: None Change-Id: Ibccfc0bfd65c45120226b3ce3e976c832d5ade6c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065312 Commit-Queue: Anastasia Helfinstein <anastasi@google.com> Reviewed-by:
Akihiro Ota <akihiroota@chromium.org> Cr-Commit-Position: refs/heads/master@{#744087}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/1773f37de61e..f95054fa7d04 git log 1773f37de61e..f95054fa7d04 --date=short --first-parent --format='%ad %ae %s' 2020-02-24 yiwzhang@google.com Roll bb tool to @36780e0 Created with: gclient setdep -r src/third_party/depot_tools@f95054fa7d04 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 agable@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 Bug: chromium:1054982 Tbr: agable@chromium.org Change-Id: I941c083df93e33b2d36c9a872cade81088f17006 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070775Reviewed-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@{#744086}
-
Brian Sheedy authored
There is an issue when building //third_party/breakpad:dump_syms in cross-compiled builds. Since dump_syms is unused in Telemetry on Windows anyways, remove the dependency entirely on that platform. TBR=crouleau@chromium.org Bug: 1055301 Change-Id: Ic78db0dff8fe6ffe008cd4610393b654775593d5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070200Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Brian Sheedy <bsheedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#744085}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/659cc1c90705..bfe5a68c1e31 git log 659cc1c90705..bfe5a68c1e31 --date=short --first-parent --format='%ad %ae %s' 2020-02-24 westont@google.com Move Pixel2XL Android_DDL1_Vulkan and Android_DDL3_Vulkan jobs to NVIDIA_Shield. 2020-02-24 nihohit@gmail.com Remove docs for macros that don't exist in the code. 2020-02-24 csmartdalton@google.com Remove SWAP_PER_DRAW from GrGLGpu Created with: gclient setdep -r src/third_party/skia@bfe5a68c1e31 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 jlavrova@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: jlavrova@google.com Change-Id: I5db7abd448bbd8eae3df5434fd7f852b175f61c8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068626Reviewed-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@{#744084}
-
Nick Harper authored
TBR=rsleevi@chromium.org Change-Id: Ie2e412295126077b9762f69b9acd993f870a8e1f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2068832 Commit-Queue: Nick Harper <nharper@chromium.org> Reviewed-by:
Nick Harper <nharper@chromium.org> Cr-Commit-Position: refs/heads/master@{#744083}
-
wutao authored
Bug: b/145218971 Test: manual Change-Id: Idbafcf175286ebbd933cd1228931fe511e74bc5f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2070114Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Commit-Queue: Tao Wu <wutao@chromium.org> Cr-Commit-Position: refs/heads/master@{#744082}
-