- 01 Dec, 2020 40 commits
-
-
Francois Doray authored
Today, PageNode::IsLoading() transitions to "true" when a response is received for a main frame different-document navigation (WebContentsObserver::DidReceiveResponse()). It transitions to "false" when the load has stopped (WebContentsObserver::DidStopLoading()) and the page has been idling for a short timeout. This implies that PageNode::IsLoading() is "false" between when a navigation starts and when the initial response is received. We want to build a policy that preempts BEST_EFFORT tasks when any page is loading. If we use PageNode::IsLoading() to build that policy, BEST_EFFORT tasks will still be able to execute between when a navigation starts and when the initial response is received. This is undesirable, because BEST_EFFORT tasks could still interfere with navigation. This CL solves the issue by replacing PageNode::IsLoading() with PageNode::GetLoadingState(). This method returns an enum: - kLoadingNotStarted: No top-level document has started loading yet. - kLoading: A different top-level document is loading. This correspond to WebContents::IsLoadingToDifferentDocument(). - kLoadedBusy: A different top-level document finished loading, but the page did not reach CPU and network quiescence since then. - kLoadedIdle: The page reached CPU and network quiescence after loading the current top-level document, or the load failed. In a different CL, we will preempt BEST_EFFORT tasks when any page is kLoading or kLoadedBusy. Bug: 887407 Change-Id: Ie88a56457309aa86221f1ea31f7ceda731547b07 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300400 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Joe Mason <joenotcharles@chromium.org> Cr-Commit-Position: refs/heads/master@{#832480}
-
Ahmed Fakhry authored
This CL adds recording UMA histograms for reasons that lead to an ongoing video recording to end. This CL also fixes a flaky test. BUG=1142994, 1141927 TEST=Modified existing tests Change-Id: I97db6dadc0a63d98dc75b43fd7696115060b310b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2559273 Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Sammie Quon <sammiequon@chromium.org> Reviewed-by:
Weilun Shi <sweilun@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#832479}
-
Ben Joyce authored
This causes blank test_logs (which may come when a test crashes) to just be <pre></pre> causing the summary to think there is content. Bug: 1151186 Change-Id: Ie31dcaa4d7ed0d7318eb2e2485b71147f00fc36c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566694Reviewed-by:
Peter Wen <wnwen@chromium.org> Reviewed-by:
Nodir Turakulov <nodir@chromium.org> Commit-Queue: benjamin joyce <bjoyce@chromium.org> Cr-Commit-Position: refs/heads/master@{#832478}
-
Gil Dekel authored
This CL consolidates all the UMA logic from configure_displays_task.cc into helper functions to help reduce the cognitive load when sifting through the task's logic. No functional changes. Test: Change-Id: I947c56153ef5ad9799efea67e1cbb2f4674dba9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566293Reviewed-by:
Daniel Nicoara <dnicoara@chromium.org> Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Commit-Queue: Gil Dekel <gildekel@chromium.org> Cr-Commit-Position: refs/heads/master@{#832477}
-
Ryan Sturm authored
This CL adds report_raw_headers to all search prefetch requests. When the request is being served, the raw headers are stripped unless the intercepted request also has report_raw_headers set. This allows dev tools to see the request headers correctly without special handling to tie a prefetch request to a specific tab. Bug: 1142014 Change-Id: I619374e424a74286ffdafdb184d1ffd7a2b74763 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2559283 Commit-Queue: Ryan Sturm <ryansturm@chromium.org> Reviewed-by:
Robert Ogden <robertogden@chromium.org> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Cr-Commit-Position: refs/heads/master@{#832476}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/6d2a0fef9315..6c54473c3710 2020-12-01 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). 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 ajp@google.com,apolito@google.com,ehmaldonado@google.com,sokcevic@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 Bug: None Tbr: ajp@google.com,apolito@google.com,ehmaldonado@google.com,sokcevic@google.com Change-Id: Iba655744290f13472f2f915c265e8105606cdccb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567742Reviewed-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@{#832475}
-
Thomas Guilbert authored
This CL reduces variablity in the video-currentTime.html test by waiting until we decode the first frame before playing the video, and then waiting for the play() promise to resolve before starting at timer to check the currentTime. Bug: 1006852 Change-Id: I3c0d9817f3f77f2a0bf085917f578bc11fd19b3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567570 Commit-Queue: Thomas Guilbert <tguilbert@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#832474}
-
Dave Tapuska authored
The ScheduleAnimation callback is still used for non-compositing WebWidgetClients (place holder plugin) but compositing ones are directly handled inside blink now. BUG=1097816 Change-Id: Ib7edb0f7d578d399da5e0c5201e46ea364c62fc6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2562958 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
Tommy Li <tommycli@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#832473}
-
Dave Tapuska authored
This change adds an interface to have blink create a subclass of WebFrameWidgetImpl specifically for web tests. This subclass is what WebWidgetTestProxy use to be but is now higher up in the chain subclassing the actual widget being created and not the intermediate RenderWidget. This change adds a dependency from core/testing to content/web_test/renderer for the EventSender and TestRunner. Since this is for tests only it is ok. Eventually we will try to remove this dependency by moving those classes into blink itself. BUG=1097816 Change-Id: I6b671e3b2a26ec14c41e7a5cc9481b6c9002bda6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2560550 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#832472}
-
Max Curran authored
histograms to CLD3LanguageCode. This change keeps these new histograms in line with Translate.SourceLanguage and Translate.TargetLanguage. Bug: 1114868 Change-Id: I163c0a6b3f87dc1c8baf0cc64598edff52290bf7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2561643Reviewed-by:
Caitlin Fischer <caitlinfischer@google.com> Commit-Queue: Max Curran <curranmax@chromium.org> Cr-Commit-Position: refs/heads/master@{#832471}
-
Natalie Chouinard authored
TBR=siashah@chromium.org Bug: 1146477 Change-Id: I2d92b8b4ed7ec97ff0195d49dac737b955940c71 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568212 Commit-Queue: Natalie Chouinard <chouinard@chromium.org> Reviewed-by:
Natalie Chouinard <chouinard@chromium.org> Cr-Commit-Position: refs/heads/master@{#832470}
-
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-aemu-chromium-autoroll Please CC chrome-fuchsia-gardener@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 Tbr: chrome-fuchsia-gardener@grotations.appspotmail.com Change-Id: Id3ea48e008eb6b94d2890da147755d83b6daa042 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567739Reviewed-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@{#832469}
-
btolsch authored
This change moves some files under //chromecast which provide simple implementations of delegate interfaces into their own GN targets so they can be linked separately. This is useful for a downstream POC. Bug: None Change-Id: Ie19eba94d93d48a00549202d49755c1b94ce9791 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2532864Reviewed-by:
Sergey Volk <servolk@chromium.org> Reviewed-by:
Sean Topping <seantopping@chromium.org> Commit-Queue: Brandon Tolsch <btolsch@chromium.org> Cr-Commit-Position: refs/heads/master@{#832468}
-
Stephanie Kim authored
linux-warmed to take in 10% of cq traffic led-tot-warmer will run every 5 minutes. led tasks triggered will expire after 5 minutes of pending. Bug: 1149606 Change-Id: Ifd494d2a1560f94dfa70d4be33dd144e333f2e1a Ignore-Goma-Freeze: try-warmer CI builder doesn't do any compiles. Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2558747 Commit-Queue: Stephanie Kim <kimstephanie@google.com> Reviewed-by:
Garrett Beaty <gbeaty@chromium.org> Cr-Commit-Position: refs/heads/master@{#832467}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/bcca3b08a90f..58678a0eb7a3 2020-12-01 mbonadei@webrtc.org Fix 'iOS API Framework Builder'. 2020-12-01 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 5e6f1ed5..1dccbc81 (832199:832322) 2020-12-01 pkotwicz@chromium.org Update webrtc guava dependency 2020-12-01 philipel@webrtc.org Handle AV1 without DependencyDescriptor. 2020-12-01 mbonadei@webrtc.org Add Chromium metrics OWNERS as OWNERS of api/uma_metrics.h 2020-12-01 nisse@webrtc.org Take out the RTCPSender object under test from the test fixture 2020-12-01 phancke@nvidia.com test: do not consider flexfec-03 a normal codec 2020-12-01 jakobi@webrtc.org Use frame rate in video overhead calculation. 2020-12-01 zhaoliang.ma@intel.com modules/video_processing: replace copy memory with libyuv::CopyPlane 2020-12-01 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 8bf71588..5e6f1ed5 (832086:832199) 2020-12-01 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision d2877101..8bf71588 (831953:832086) 2020-11-30 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision d99eda17..d2877101 (831830:831953) 2020-11-30 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 6afe1bba..d99eda17 (831717:831830) 2020-11-29 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 4559b6b5..6afe1bba (831617:831717) 2020-11-27 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 3e0e8c53..4559b6b5 (831500:831617) 2020-11-27 philipel@webrtc.org Break RtpFrameReferenceFinder into descriptor specific parts. 2020-11-27 mbonadei@webrtc.org Build and run iOS tests as XCTests. If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/webrtc-chromium-autoroll Please CC webrtc-chromium-sheriffs-robots@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md Bug: chromium:2560401 Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: If763ceb8e226a5ee648502d446204d5e7a338658 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566367Reviewed-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@{#832466}
-
Norman Rosas authored
//components/js_injection, also removed duplicated metadata from OWNERS files Bug: 1113033 Change-Id: I33d81d6bdfcb6ff27b5172cd76f0b5d6fb64231c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568216 Auto-Submit: Norman Rosas <normando@google.com> Commit-Queue: Yaron Friedman <yfriedman@chromium.org> Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Cr-Commit-Position: refs/heads/master@{#832465}
-
Norman Rosas authored
and //components/l... also removed duplicated metadata from OWNERS files Bug: 1113033 Change-Id: Icc3359af82d86b5273b0cbdf577bd77bc8b9775e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568350 Auto-Submit: Norman Rosas <normando@google.com> Commit-Queue: Yaron Friedman <yfriedman@chromium.org> Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Cr-Commit-Position: refs/heads/master@{#832464}
-
Carlos Caballero authored
This is a reland of 1fc0c31c Additionally disabled test failure for unexpected messages in BackForwardCacheBrowserTest.PageshowMetrics which lead to the revert. Original change's description: > Two phase BackForwardCache restore > > Split the BackForwardCache restore flow into two phases: > * disable evictions (e.g. no longer evict if js executes) > * Commit navigation and unfreeze the page and run handlers (pageshow etc) > > This eliminates the existing race were a evict request arrives after > RFH have been swapped and a reload is needed. > > We add a new Lifecycle state property that controls eviction and we > commit the back navigation (and thus swap RFH instances) we wait for > the renderer to ack that eviction is disabled. At this point we can > be sure that no eviction request will arrive from the renderer and we > can commit the navigation. > > Bug: 1153126 > > Change-Id: I4e787a008881a04954b27d201e635b3a18794536 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2352815 > Commit-Queue: Carlos Caballero <carlscab@google.com> > Reviewed-by: Daniel Cheng <dcheng@chromium.org> > Reviewed-by: Arthur Sonzogni <arthursonzogni@chromium.org> > Reviewed-by: Alexander Timin <altimin@chromium.org> > Cr-Commit-Position: refs/heads/master@{#831809} Bug: 1153126 Change-Id: I99bbb2b61d99eaac33909109936cbaa81eca70fa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2563674Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Arthur Sonzogni <arthursonzogni@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Commit-Queue: Carlos Caballero <carlscab@google.com> Cr-Commit-Position: refs/heads/master@{#832463}
-
Roman Aleksandrov authored
Bug: 1143666 Change-Id: Id3da3153cc8e2742b56c82676c39a54b93494bbc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2565433Reviewed-by:
Denis Kuznetsov [CET] <antrim@chromium.org> Commit-Queue: Roman Aleksandrov <raleksandrov@google.com> Cr-Commit-Position: refs/heads/master@{#832462}
-
Illia Klimov authored
This CL removes Flash/Plugins from PermissionRequestTypes and PermissionTypes enums and its call sites. Bug: 1149393 Change-Id: Ib7675b502b59704cf04d9a900fbbf469fa9c9de3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2563553Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Reviewed-by:
Arthur Sonzogni <arthursonzogni@chromium.org> Reviewed-by:
Balazs Engedy <engedy@chromium.org> Reviewed-by:
Caitlin Fischer <caitlinfischer@google.com> Commit-Queue: Illia Klimov <elklm@chromium.org> Cr-Commit-Position: refs/heads/master@{#832461}
-
minch authored
Remove the special shape of the collapse button. Changing it based on the dark mode's spec. See recorded video at https://drive.google.com/file/d/1jUzzACXKYKjX-VLtNJMM5PrPPaJ9Pv0g/view?usp=sharing&resourcekey=0-h-Z7-5Ul0ub5kc8HN15FIQ Bug: 1145377 Change-Id: If00bffe750df0adf19af9888a6362f5d461c6514 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566896Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Min Chen <minch@chromium.org> Cr-Commit-Position: refs/heads/master@{#832460}
-
Luke Zielinski authored
Bug: 1127055 Change-Id: I40e29aaf533cc852b97c7010950eb25cbe2d93d7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2564394Reviewed-by:
Erik Staab <estaab@chromium.org> Commit-Queue: Luke Z <lpz@chromium.org> Cr-Commit-Position: refs/heads/master@{#832459}
-
Natalie Chouinard authored
This test is flaky on multiple builders: Lollipop Phone Tester Lollipop Tablet Tester Marshmallow 64 bit Tester Marshmallow Tablet Tester TBR=nator Bug: 1154332 Change-Id: I46a492588c4e1bae442dcb4ba911f903a819d480 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566780Reviewed-by:
Natalie Chouinard <chouinard@chromium.org> Commit-Queue: Natalie Chouinard <chouinard@chromium.org> Cr-Commit-Position: refs/heads/master@{#832458}
-
Bin Du authored
We read App Sync settings from all initialized user profiles on device. If disabled, possible Android app names in perf data should be removed. ChromeOS split sync feature splits the sync setting to different places. If split sync feature is disabled, we read from Chrome sync settings. If it is enabled, we read from ChromeOS sync settings. Metrics show majority of users on stable channel enable App Sync. Add a UMA histogram to track the status of recording profile data. Bug=b:171796981 TEST=tested sync settings on a Chromebook, MetricProvider unit test. Change-Id: Iad00f2755e3b55c0e1e380efdf9283028b0a145c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499369 Commit-Queue: Bin Du <dubin@google.com> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Gabriel Marin <gmx@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#832457}
-
Chrome Metrics Logs authored
Updates the expires_after attribute for 31 histograms that have been used to generate alerts in the past 90 days and do not already have a date later than or within 60 days of 2021-03-01. TBR=chromium-metrics-reviews@google.com Change-Id: I413099c7772c761a310048f0446aadebc8d81ec1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566366Reviewed-by:
Chrome Metrics Logs <chrome-metrics-team+robot@google.com> Commit-Queue: Chrome Metrics Logs <chrome-metrics-team+robot@google.com> Cr-Commit-Position: refs/heads/master@{#832456}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/b11a9129408b..efb716af67f6 2020-12-01 tvanderlippe@chromium.org Update linter packages 2020-12-01 jacktfranklin@chromium.org Fix missing DEP to CSS files from unit tests 2020-12-01 jacktfranklin@chromium.org [Dark Mode]: migrate CSS files with no colors 2020-12-01 jacktfranklin@chromium.org [Dark Mode]: components/jsUtils.css 2020-12-01 alcastano@google.com Display CSP Violations in a new tab drawer 2020-12-01 andoli@chromium.org Migrate ui/ActionRegistration.js to .ts 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: chromium:1134103,chromium:1137837,chromium:1152736 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I4a0f44e1c983796ea926d6dfdb2c9478f9eea367 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566364Reviewed-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@{#832455}
-
Thomas Guilbert authored
Issue crbug.com/454029 was closed as won't fix, and it seems like the VideoEncodeAccelerator callbacks won't be removed for now. This CL converts them into their proper {Once|Repeating} callback forms. These are the last callbacks that need to be converted in media/cast, and media/ as a whole (although there are still a few uses of base::Bind in media/). Bug: 1007801, 714018 Change-Id: Ia133555172d91cdce4a42f48127424d910fbe268 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566355Reviewed-by:
David Bienvenu <davidbienvenu@chromium.org> Reviewed-by:
mark a. foltz <mfoltz@chromium.org> Commit-Queue: Thomas Guilbert <tguilbert@chromium.org> Cr-Commit-Position: refs/heads/master@{#832454}
-
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 chrome-fuchsia-gardener@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 Cq-Include-Trybots: luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-deterministic-dbg;luci.chromium.try:fuchsia-x64-cast Tbr: chrome-fuchsia-gardener@grotations.appspotmail.com Change-Id: Id11ba9f5ef3b50242c1e30e5e99416bbc7568fb3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2568050Reviewed-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@{#832453}
-
Xianzhu Wang authored
Change-Id: Ia55628c49d82c588ef594ba10df7888e7797947e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2561045Reviewed-by:
Stephen Chenney <schenney@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#832452}
-
Florin Malita authored
Only use kHigh_SkFilterQuality when actually upscaling. For identity scale, bicubic filtering is unnecessarily expensive and changes the output (not a no-op). Note: Skia used to catch the identity case and downgrade to kMedium_SkFilterQuality internally. That behavior is being removed, and this CL unblocks https://chromium-review.googlesource.com/c/chromium/src/+/2562751/12. Bug: skia:7650 Change-Id: If72511c690df8ad010fe3bd730d1bf81ecfb2958 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566777Reviewed-by:
kylechar <kylechar@chromium.org> Reviewed-by:
Mike Reed <reed@google.com> Commit-Queue: Florin Malita <fmalita@chromium.org> Cr-Commit-Position: refs/heads/master@{#832451}
-
Chrome Metrics Logs authored
Updates the expires_after attribute for 174 histograms that show frequent access in the past 90 days. These are the 95% most frequently used histograms over that time that do not already have a date later than or within 60 days of 2021-03-01. TBR=chromium-metrics-reviews@google.com Change-Id: Ie6719279a07dff6620942ed72e9a1116098b56ce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566368Reviewed-by:
Chrome Metrics Logs <chrome-metrics-team+robot@google.com> Reviewed-by:
Weilun Shi <sweilun@chromium.org> Commit-Queue: Chrome Metrics Logs <chrome-metrics-team+robot@google.com> Cr-Commit-Position: refs/heads/master@{#832450}
-
Jeffrey Kardatzke authored
BUG=b:1153320, TEST=Fuzzer passes now, unit tests pass Change-Id: I9b3b0f454f30a04a1b7c83df039db0975930e175 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2564766Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Jeffrey Kardatzke <jkardatzke@google.com> Cr-Commit-Position: refs/heads/master@{#832449}
-
Amr Aboelkher authored
As SHELL library is being used by AutoEnrollmentClientImpl*, its tests should always be ran when the platform is ChromeOS. BUG=chromium:1151230 Change-Id: I5adfaaa35ea0367b24cc339ba0981cc85b0b61eb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2550808 Commit-Queue: Amr Aboelkher <amraboelkher@google.com> Reviewed-by:
Dirk Pranke <dpranke@google.com> Reviewed-by:
Ben Pastene <bpastene@chromium.org> Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#832448}
-
Norman Rosas authored
Generate DIR_METADATA files and remove metadata from OWNERS files for //components/history Bug: 1113033 Change-Id: I5df2937570e3f72e97a58e78b3d85f4601992f38 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2543383Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Norman Rosas <normando@google.com> Cr-Commit-Position: refs/heads/master@{#832447}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/831a5a10f4f9..356cef301b81 2020-12-01 csmartdalton@google.com Simplify grvx::approx_angle_between_vectors signature 2020-12-01 brianosman@google.com Test & implement "vector relational intrinsics" 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 westont@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 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 Cq-Do-Not-Cancel-Tryjobs: true Bug: None Tbr: westont@google.com Change-Id: Ieff4babc6d987ce6e923d563e52f1a2d9d288f8d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567738Reviewed-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@{#832446}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/e644010395ee..a3bcd1c0e2e9 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-linux-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: Id2c9984f907486ba8214fa22642f42a487bb505f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2567715Reviewed-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@{#832445}
-
Norman Rosas authored
Generate DIR_METADATA files and remove metadata from OWNERS files for //components/session... Bug: 1113033 Change-Id: Ibfe199813188358262916b8ba6d1cbdc0c72ef4c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2561022Reviewed-by:
Mike Pinkerton <pinkerton@chromium.org> Commit-Queue: Norman Rosas <normando@google.com> Cr-Commit-Position: refs/heads/master@{#832444}
-
Ted Choc authored
BUG=1151335,1104873 Change-Id: I887dd7a42182d73b4c6d25cfba6ad920a1e5dcbe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2559319Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Reviewed-by:
Justin DeWitt <dewittj@chromium.org> Commit-Queue: Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#832443}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/42433abb9596..a3bcd1c0e2e9 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: I90b7a6ad5ae2ae018b4ae825b12820e51e550f4a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2566347Reviewed-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@{#832442}
-
Gavin Mak authored
This change also affects FakeTetherHostFetcher, TetherHostFetcherImpl Bug: 1007635 Change-Id: I4754ad64736452c16afb8d1759c68cd507ea2d9d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2558843Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Ryan Hansberry <hansberry@chromium.org> Commit-Queue: Gavin Mak <gavinmak@google.com> Cr-Commit-Position: refs/heads/master@{#832441}
-