- 25 Aug, 2020 40 commits
-
-
Allen Bauer authored
Bug: 938501 Change-Id: I626f069799b36d7066860ade83ba3469ffff38e2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2358823 Commit-Queue: Allen Bauer <kylixrd@chromium.org> Auto-Submit: Allen Bauer <kylixrd@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#801417}
-
Christian Biesinger authored
R=ikilpatrick@chromium.org Bug: 1083010 Change-Id: Iad69b0ed34d181c483e4337f2f12200c27c52101 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2372737 Auto-Submit: Christian Biesinger <cbiesinger@chromium.org> Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#801416}
-
Morten Stenshorne authored
TBR=wangxianzhu@chromium.org Change-Id: I6565abf963b77089ff3ad47f055aa9af87e460b8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375210Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#801415}
-
Aaron Leventhal authored
This existed only to map to AXMenuButton on Mac, but Apple has decided it is no longer necessary, and there may have never been a good reason to have it. See https://github.com/w3c/core-aam/issues/80 for more info. AX-RelNotes: n/a TBR: wfh@chromium.org Bug: None Change-Id: Id9ecaa205004147940956c8dacf073ed669eac0f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2369672 Commit-Queue: Aaron Leventhal <aleventhal@chromium.org> Reviewed-by:
David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#801414}
-
Jesse McKenna authored
This change makes the following changes to improve the markdown formatting of README.md: * Add spaces between lines to create line breaks where missing * Replace quotes around console commands with backticks to render them in monospace * Make a link inline Change-Id: Ib370899c2ee6bba22235598c0626ff2f95a2e1cd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374917Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Commit-Queue: Jesse McKenna <jessemckenna@google.com> Cr-Commit-Position: refs/heads/master@{#801413}
-
Jesse Schettler authored
Create and begin implementing a ScanService Mojo interface. The interface will be used by the Scan SWA to get connected scanners, obtain scanner capabilities, and perform scans. For now, only GetScanners() is defined and implemented. Subsequent CLs will add more methods and update the Scan SWA to use the interface. Bug: 1059779 Change-Id: Ia2511d586ea775bc35ed7549e7da63aa2a29bd10 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2368175 Commit-Queue: Jesse Schettler <jschettler@chromium.org> Reviewed-by:
Jimmy Gong <jimmyxgong@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#801412}
-
Sean McAllister authored
Currently, ChromeOS defines the OS_LINUX directive as well as OS_CHROMEOS. We're working to separate these two, so we're making the fact that OS_LINUX == OS_LINUX || OS_CHROMEOS explicit. This is changes for /base/allocator/partition_allocator This CL was uploaded by git cl split. R=lizeb@chromium.org Bug: 1110266 Change-Id: Ibf15087393996835bdcedabeacec04114d96c6be Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2371209Reviewed-by:
Benoit L <lizeb@chromium.org> Commit-Queue: Sean McAllister <smcallis@google.com> Cr-Commit-Position: refs/heads/master@{#801411}
-
Tom Anderson authored
This removes all usage of Xlib except for ConnectionNumber. R=msisov Bug: 1066670 Change-Id: Ic714254bfda1fc2087c089dbe471b92e3b4c4915 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373186 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Maksim Sisov (GMT+3) <msisov@igalia.com> Cr-Commit-Position: refs/heads/master@{#801410}
-
Jacobo Aragunde Pérez authored
Per //base/containers/README.md, std::set is generally recommended, unless there are strong reasons for using unordered_set. Change-Id: Id6fa60482aa4277f723137bbc53d3b7fa341e925 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2372464Reviewed-by:
Joanmarie Diggs <jdiggs@igalia.com> Commit-Queue: Jacobo Aragunde Pérez <jaragunde@igalia.com> Cr-Commit-Position: refs/heads/master@{#801409}
-
Rahul Singh authored
Problem: Currently in VideoCaptureDeviceFactoryWin::GetDevicesInfoMediaFoundation we generate |devices_info| with MFAttributes for both KSCATEGORY_VIDEO_CAMERA and KSCATEGORY_SENSOR_CAMERA. The latter attribute adds IR cameras (used for Windows Hello) to |devices_info|. However, in VideoCaptureDeviceFactoryWin::EnumerateDevicesUWP we use FindAllAsyncDeviceClass() to get Device Information for only video capture devices. As a result, we never get_EnclosureLocation() for IR cameras. Consequently, their VideoFacingMode is never set. This results in incorrect camera rotation for IR cameras on pages like: https://webrtc.github.io/samples/src/content/devices/input-output/ Fix: This CL changes the Windows API used in VideoCaptureDeviceFactoryWin::EnumerateDevicesUWP from FindAllAsyncDeviceClass() to FindAllAsyncAqsFilter(). The latter allows us to provide an AQS selector string to filter devices for which DeviceInformation is returned to both KSCATEGORY_VIDEO_CAMERA and KSCATEGORY_SENSOR_CAMERA. Testing: Verified that the above change fixes rotation for IR cameras while keeping rotation behavior for Video cameras the same. Bug: 1090754 Change-Id: I0420cc2034be905e188d7e94f51eed298cdeaa7e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2366035Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Rahul Singh <rahsin@microsoft.com> Cr-Commit-Position: refs/heads/master@{#801408}
-
Morten Stenshorne authored
Two separate sections for passing and failing tests, and that's it. [*] [*] Left one Mac-specific Skip where it was (in the form controls refresh section) TBR=wangxianzhu@chromium.org Bug: 829028 Change-Id: I22fa19c6ea813321c7fa7baba58c511fc3097855 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375348Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#801407}
-
Sean McAllister authored
Currently, ChromeOS defines the OS_LINUX directive as well as OS_CHROMEOS. We're working to separate these two, so we're making the fact that OS_LINUX == OS_LINUX || OS_CHROMEOS explicit. This is changes for /media/capture/video This CL was uploaded by git cl split. R=guidou@chromium.org Bug: 1110266 Change-Id: I73819505c21053585355c83e9f13e48aa386fa9c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370729Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Sean McAllister <smcallis@google.com> Cr-Commit-Position: refs/heads/master@{#801406}
-
Jacobo Aragunde Pérez authored
Extend usage of AXEventRecorder to count accessibility events in some recently added tests. Bug: None Change-Id: I91824b69e772883a95de27b36deff47022f72cc3 AX-Relnotes: no user-facing changes. Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2372484Reviewed-by:
Peter Boström <pbos@chromium.org> Commit-Queue: Jacobo Aragunde Pérez <jaragunde@igalia.com> Cr-Commit-Position: refs/heads/master@{#801405}
-
Sean McAllister authored
Currently, ChromeOS defines the OS_LINUX directive as well as OS_CHROMEOS. We're working to separate these two, so we're making the fact that OS_LINUX == OS_LINUX || OS_CHROMEOS explicit. This is changes for /media/video/gpu_memory_buffer_video_frame_pool.cc This CL was uploaded by git cl split. R=dcastagna@chromium.org Bug: 1110266 Change-Id: Ic8eb9551075af15901c576695ae94460e9fc3900 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370731Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Commit-Queue: Sean McAllister <smcallis@google.com> Cr-Commit-Position: refs/heads/master@{#801404}
-
Peter Kotwicz authored
This CL: - Deletes duplicate components/browser_ui/modaldialog/android/test/java/res/drawable/ic_add.xml to remove conflict with chrome/android/java/res/drawable/ic_add.xml The drawable in ModalDialogViewTest.java is swapped because the drawable used does not matter - Deletes modaldialog duplicate string resources in favour of browser_ui_strings_grd BUG=1093825 Change-Id: I8efa45de23c598123844a64621be6307830e0c26 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2371682 Commit-Queue: Peter Kotwicz <pkotwicz@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#801403}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/f1b9b50369f3..b19dea038322 2020-08-25 devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update DevTools Chromium DEPS. 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/+doc/master/autoroll/README.md Bug: None Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I1dbdc6b0ff49b55459bdb438f5116e77fe30dbd9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374807Reviewed-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@{#801402}
-
Leonard Grey authored
Bug: 635853 Change-Id: I4f4c475e8326b3dc3a5c3014185f027b8656176a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2372739Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Leonard Grey <lgrey@chromium.org> Cr-Commit-Position: refs/heads/master@{#801401}
-
Connie Wan authored
Not extending Feedback due to crbug.com/1071685, which should get rid of the flag by M87. Bug: 1121490 Change-Id: I5fee2753a77303a5dd35ed555afcb85ef8d91943 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375485 Commit-Queue: Connie Wan <connily@chromium.org> Commit-Queue: Charlene Yan <cyan@chromium.org> Reviewed-by:
Charlene Yan <cyan@chromium.org> Cr-Commit-Position: refs/heads/master@{#801400}
-
Theresa Wellington authored
BUG=1120830 Change-Id: Ib042eff1551118d506d325f5d8dbbe8a548ac21a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373286 Commit-Queue: Theresa <twellington@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#801399}
-
Minggang Wang authored
SetForceLegacyDefaultReferrerPolicy()/ShouldForceLegacyDefaultReferrerPolicy() into Blink This patch moves SetForceLegacyDefaultReferrerPolicy() and ShouldForceLegacyDefaultReferrerPolicy() methods into Blink, so we could call them directly from Blink. Bug: 860403 Change-Id: I07eaf51344132dc7b2e6137e9929d3f9be9f1ccc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2355581Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Commit-Queue: Minggang Wang <minggang.wang@intel.com> Cr-Commit-Position: refs/heads/master@{#801398}
-
Sean McAllister authored
Currently, ChromeOS defines the OS_LINUX directive as well as OS_CHROMEOS. We're working to separate these two, so we're making the fact that OS_LINUX == OS_LINUX || OS_CHROMEOS explicit. This is changes for /media/video/fake_gpu_memory_buffer.cc This CL was uploaded by git cl split. R=dcastagna@chromium.org Bug: 1110266 Change-Id: I96e84181f4cdb58d754759abb18a08a00fdc74a8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370730Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Commit-Queue: Sean McAllister <smcallis@google.com> Cr-Commit-Position: refs/heads/master@{#801397}
-
Maksim Moskvitin authored
This CL adds PrimaryAccountObserver and plumbs IdentityManager dependency into StandaloneTrustedVaultClient. PrimaryAccountObserver populates primary (or unconsented primary) account to StandaloneTrustedVaultBackend. Bug: 1113597 Change-Id: Ifa8c4fc530d7aede25e506a57264a7a203477d9d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2371702 Commit-Queue: Maksim Moskvitin <mmoskvitin@google.com> Reviewed-by:
Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#801396}
-
Charlie Hu authored
Change-Id: Ice3b53cbce49c5989d5a45761fb15922bfe7ba21 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2359567Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Ian Clelland <iclelland@chromium.org> Commit-Queue: Charlie Hu <chenleihu@google.com> Cr-Commit-Position: refs/heads/master@{#801395}
-
Andrew Comminos authored
Bug: 1119865 Change-Id: I916173d91453aebaf86e915b5bae85539a578ad1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373184Reviewed-by:
Nicolás Peña Moreno <npm@chromium.org> Commit-Queue: Andrew Comminos <acomminos@fb.com> Cr-Commit-Position: refs/heads/master@{#801394}
-
Haiyang Pan authored
This reverts commit 90d9fea6. Reason for revert: Missed a wild card Original change's description: > Disable P/CompositorImplBrowserTestRefreshRate.VideoPreference on M x86 > > Test flakes frequently on M emulator. > > BUG=1120813 > > Change-Id: I481b39088f22e295e31ec5eed155f168e0fbad78 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373284 > Commit-Queue: Theresa <twellington@chromium.org> > Commit-Queue: Haiyang Pan <hypan@google.com> > Auto-Submit: Theresa <twellington@chromium.org> > Reviewed-by: Haiyang Pan <hypan@google.com> > Cr-Commit-Position: refs/heads/master@{#801172} TBR=twellington@chromium.org,hypan@google.com Change-Id: I2ac2f638512ac603c0c7877c90a5de84857e947c No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 1120813 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374048Reviewed-by:
Haiyang Pan <hypan@google.com> Commit-Queue: Haiyang Pan <hypan@google.com> Cr-Commit-Position: refs/heads/master@{#801393}
-
Nicolas Ouellet-Payeur authored
This reverts commit 22a95fed. Reason for revert: class will not be used anymore, since this change: https://crrev.com/c/2335639 Original change's description: > [Extensions] Add ParallelUnpacker class > > This class makes it easy to starts multiple SandboxedUnpacker's in > parallel, and get notified as soon as any of them completes. Since > SandboxedUnpacker is disk-bound and often takes >2s to run, running them > in parallel can be beneficial. > > Right now ParallelUnpacker is not used anywhere, but a follow-up CL will > use it to make extensions update in parallel, which will speed up > extension installs when many of them are queued at the same time (such > as for force-installed extensions). > > Bug: 1103447 > Change-Id: Ibc35588134fe0e91c4f7a243677181a08c642552 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2294563 > Commit-Queue: Nicolas Ouellet-Payeur <nicolaso@chromium.org> > Reviewed-by: Devlin <rdevlin.cronin@chromium.org> > Cr-Commit-Position: refs/heads/master@{#791835} TBR=rdevlin.cronin@chromium.org,nicolaso@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 1103447 Change-Id: Ibd1459dfdf6104ad5aac0bf4f62b5933ad437af1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367988Reviewed-by:
Nicolas Ouellet-Payeur <nicolaso@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Commit-Queue: Nicolas Ouellet-Payeur <nicolaso@chromium.org> Cr-Commit-Position: refs/heads/master@{#801392}
-
Annie Sullivan authored
Also include a change missed in M84. Change-Id: I0091c73b5d56fee3d326412a367a1cb85cdbd865 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373218 Commit-Queue: Annie Sullivan <sullivan@chromium.org> Reviewed-by:
Nicolás Peña Moreno <npm@chromium.org> Cr-Commit-Position: refs/heads/master@{#801391}
-
Jeroen Dhollander authored
This is the main controller for the Bloom feature. In this CL I simply: * Introduce the |BloomController| class, and an (mostly) empty |BloomControllerImpl|. * Create the |BloomController| inside the |AssistantClient|, by means of a |BloomControllerFactory|. In later CLs this will actually start doing something. Bug: b/165356952 Change-Id: Ib4d22016bd60ae27e940807e9bb47a2d317eaf96 Tests: Compiled Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2363399Reviewed-by:
Matt Menke <mmenke@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Jeroen Dhollander <jeroendh@chromium.org> Cr-Commit-Position: refs/heads/master@{#801390}
-
Tom Anderson authored
Nothing references the build target, so it should be safe to remove. xvfb.py now has its own check: https://source.chromium.org/chromium/chromium/src/+/master:testing/xvfb.py;l=172?q=xvfb.py&ss=chromium Also we now have xwmstartupcheck, which checks that the WM (openbox) is running, which implies the X server is up and running. BUG=1066670 Change-Id: I175df13aef8515e9cc39e0baf8db00c74c6f5cc0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373175 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@google.com> Cr-Commit-Position: refs/heads/master@{#801389}
-
Rob Buis authored
Add method to check whether operator should be stretched vertically [1] as well as a unit test. This method will be used in a follow-up CL. [1] https://mathml-refresh.github.io/mathml-core/#stretchy-operator-axis Bug: 6606 Change-Id: If57b13db6c8a710ff553ead6dff9157812122679 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375346 Commit-Queue: Rob Buis <rbuis@igalia.com> Reviewed-by:
Dominik Röttsches <drott@chromium.org> Cr-Commit-Position: refs/heads/master@{#801388}
-
edchin authored
Tracking images marked for Close All and Undo Close All is no longer necessary with SnapshotBrowserAgent, since there is one SnapshotCache per Browser. Change-Id: I115d0fd11fc22285204446c71bdeae05bf916898 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370563Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: edchin <edchin@chromium.org> Cr-Commit-Position: refs/heads/master@{#801387}
-
Joshua Pawlicki authored
The file is not in an archive, since it is convenient for the release tool to be able to copy it directly to the download server (instead of unzipping it, saving it back to GCS, then copying it to the download server). Bug: 1058102 Change-Id: I487afbdc5587fe0f36f400af5b3c070a8850f349 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374513 Auto-Submit: Joshua Pawlicki <waffles@chromium.org> Commit-Queue: Robert Sesek <rsesek@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Cr-Commit-Position: refs/heads/master@{#801386}
-
edchin authored
The calls to SnapshotCache methods via SnapshotBrowserAgent required obtaining and passing in a Tab ID. It is more correct to directly call the SnapshotTabHelper since it is tied to the WebState. Change-Id: Ie0a7f1976544bc860e4b0cf4ba4e4e381689333e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370015Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: edchin <edchin@chromium.org> Cr-Commit-Position: refs/heads/master@{#801385}
-
Alexander Dunaev authored
On Linux, application modal dialogs should use custom implementation of javascript_dialogs::AppModalDialogViewViews that instantiates the so called event blocker that prevents all windows except the given one from receiving events. The issue affected both X11 and Wayland. This CL moves the creation of the blocker into the default dialog class and makes the latter asking at run time whether the blocker is required, thus fixing the behaviour for Ozone/X11 and Ozone/Wayland. Other platforms use the default implementation that doesn't create the blocker. Change-Id: Ia114ec98dc03167381cbe59e32c30ab09258b704 Bug: 1121138 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2366745Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Alexander Dunaev <adunaev@igalia.com> Cr-Commit-Position: refs/heads/master@{#801384}
-
chrome://multidevice-internalsKyle Horimoto authored
(1) Add a newline at the end of each line when saving logs file. (2) Show logs in chronological order. (3) Fix issue which showed "../../" at the start of every filename. Change-Id: I3c40a4c083d156c70998149a0c61b618767c7fc2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2372600 Auto-Submit: Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Josh Nohle <nohle@chromium.org> Reviewed-by:
Josh Nohle <nohle@chromium.org> Cr-Commit-Position: refs/heads/master@{#801383}
-
Xianzhu Wang authored
It corresponds to blink::RuntimeEnabledFeatures::CompositeSVGEnabled(). This is to allow perf tests with CompositeSVG enabled by default with a testing variation. Bug: 1101002 Change-Id: If9a92b9eb56d0b242d8a46e397df71faa01577e6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373398Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#801382}
-
Andrew Paseltiner authored
This is a reland of 312a57a1 Original change's description: > Trigger heavy ad intervention when an unloaded heavy ad navigates > > Bug: 1099014 > Change-Id: I98a2d0e548a48fd93618fbae1c1d458f1dbd58a4 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2269740 > Reviewed-by: John Delaney <johnidel@chromium.org> > Commit-Queue: Andrew Paseltiner <apaseltiner@chromium.org> > Cr-Commit-Position: refs/heads/master@{#791488} Bug: 1099014 Change-Id: I0894d1f43127e3776e9f71bd35dcb723a1778ceb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2356164Reviewed-by:
John Delaney <johnidel@chromium.org> Commit-Queue: Andrew Paseltiner <apaseltiner@chromium.org> Cr-Commit-Position: refs/heads/master@{#801381}
-
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/+doc/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: I08113ee4e4f103a71d5a45aae9888fec4fd7fa41 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374681Reviewed-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@{#801380}
-
Francois Doray authored
It is useful to have a page to reference when explaining shutdown steps. Additional info will be added as needed. Change-Id: I8185372618d6af83d1050a621e8a9898530d4352 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2372896 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#801379}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/cd8de1d295b4..41db2fb64914 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-trace-processor-mac-chromium 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/+doc/master/autoroll/README.md Tbr: perfetto-bugs@google.com Change-Id: Ib7f0c0adeacc871fbce433e8d9a80815698c05ce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374406Reviewed-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@{#801378}
-