- 26 Aug, 2020 18 commits
-
-
Thomas Lukaszewicz authored
Bug: 1099917 Change-Id: I488e14cd7389bd920d022c3e4d2394d30b292b5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370737 Commit-Queue: Thomas Lukaszewicz <tluk@chromium.org> Reviewed-by:
Robert Liao <robliao@chromium.org> Cr-Commit-Position: refs/heads/master@{#801633}
-
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 /gpu/ipc/common/gpu_memory_buffer_support.h This CL was uploaded by git cl split. R=dcastagna@chromium.org Bug: 1110266 Change-Id: I5b10a6b731b816cbeacbb7a11916c93f33f40ae5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2370728Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Sean McAllister <smcallis@google.com> Cr-Commit-Position: refs/heads/master@{#801632}
-
Oriol Brufau authored
Before running the grid track sizing algorithm, there is a prelayout step which takes care of the baseline alignment of the items. In order to do that, we estimate the size of the grid area, since we have not calculated the final size yet. The problem was that, when calculating this estimate, the available column space had not been set yet. So if a column had a percentage track sizing function, it would be treated as auto and the estimated size would be wrong. This patch sets the available column space so that we can resolve percentage track sizing functions and get a more correct estimate. Bug: 1121761 TEST=external/wpt/css/css-grid/alignment/self-baseline/grid-self-baseline-008.html Change-Id: Ic4410b0a80b92afa5adfd62187ec236bd4fd3ba0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375649 Commit-Queue: Oriol Brufau <obrufau@igalia.com> Reviewed-by:
Javier Fernandez <jfernandez@igalia.com> Cr-Commit-Position: refs/heads/master@{#801631}
-
nancylingwang authored
The flaky issue has been fixed with CL:2371767, so enable this test case. BUG=1115762 Change-Id: Ia96b7e58c20470f2f0badcda9e13bff4bfdf1e84 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375011Reviewed-by:
Dominick Ng <dominickn@chromium.org> Commit-Queue: Nancy Wang <nancylingwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#801630}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/8f012723b79d..090e3d5a3680 2020-08-25 soxia@microsoft.com [DevTools]Fix issue where emulated dual screen's hinge is gone 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:1120800 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: Iaadcfa7f337d627d171c99e67be321984306a0ee Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376492Reviewed-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@{#801629}
-
Shawn Gallea authored
Removes experiment, enables 4hz framerate on all headless chromecast devices. Bug: b/139299756 Test: Locally on device Change-Id: I8d6b9b1010c186837b16edffced8d7dc7cac6f3b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376459Reviewed-by:
Michael Spang <spang@chromium.org> Commit-Queue: Shawn Gallea <sagallea@google.com> Cr-Commit-Position: refs/heads/master@{#801628}
-
Xianzhu Wang authored
Bug: 1101002 Change-Id: I86a3e9b0f328f9c4f8965af4e59e016a7cad793a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2369263Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#801627}
-
Joe DeBlasio authored
Update to match cl/327480560 . Change-Id: I202f263750af03bc61cfcd66048f65ff6c250bc6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375735Reviewed-by:
Ilya Sherman <isherman@chromium.org> Commit-Queue: Joe DeBlasio <jdeblasio@chromium.org> Cr-Commit-Position: refs/heads/master@{#801626}
-
chinsenj authored
As an ongoing effort to make the window cycle list more interactive, this CL makes it so users can select and confirm a selection by tapping a preview item in the window cycle list. Test: InteractiveWindowCycleControllerTest.TapSelect Bug: 1067327 Change-Id: Ice8cbcfe0e1886a15169f50eaf3172e96acb03e7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367497 Commit-Queue: Jeremy Chinsen <chinsenj@chromium.org> Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#801625}
-
Jonathan Backer authored
In this CL, we want to relax the requirement for CACHED memory as part of a finch experiment. On Mali GPU, we have roughly 3 types: a) HOST | COHERENT| DEVICE (coherent is not cached) b) HOST | CACHED | DEVICE (cached is non-coherent) c) DEVICE By relaxing the CACHED condition, the driver is free to give us (a) or (b) based on what it thinks is more performant. This is roughtly equivalent to https://skia-review.googlesource.com/c/skia/+/312056 Change-Id: Ib8a76b1870b6284ba1cb83128f5349e96f56fc9b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376447Reviewed-by:
Peng Huang <penghuang@chromium.org> Commit-Queue: Jonathan Backer <backer@chromium.org> Cr-Commit-Position: refs/heads/master@{#801624}
-
Xianzhu Wang authored
This reverts commit 4562b3f8. Reason for revert: This prevents the blink feature from being tested for web tests. Will land crrev.com/c/2369263 first. We may not reland this CL if we decide not to go through field trial. Original change's description: > Add blink::features::CompositeSVG > > 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/+/2373398 > Reviewed-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} TBR=wangxianzhu@chromium.org,pdr@chromium.org,chrishtr@chromium.org Change-Id: I8546a075b9d850a53e9117d12731ee9fe1ae3d6f No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 1101002 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375996Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#801623}
-
Jinsuk Kim authored
This CL reinstates following CLs reverted by https://crrev.com/c/2308616 as it was clarified that they have nothing to do with the jank issue: https://crrev.com/c/2022791 Revert "Only CHECK for RenderProcessHosts that outlive an OTR profile in release" https://crrev.com/c/2134019 Add tracing to make it easier to debug shutdown behavior. https://crrev.com/c/2171463 Clean up ProfileDestroyer. Bug: 1095078, 1095548 Change-Id: I1ebc38c20780ceecb2a9adc5128e3d850f65b6ab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2371904Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Ramin Halavati <rhalavati@chromium.org> Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Cr-Commit-Position: refs/heads/master@{#801622}
-
Victor Vasiliev authored
https://quiche.googlesource.com/quiche.git/+log/c7f8b47a1b55..c2e5361f375a $ git log c7f8b47a1..c2e5361f3 --date=short --no-merges --format='%ad %ae %s' 2020-08-25 renjietang Remove incorrect warning for zombie streams. 2020-08-25 dschinazi Deprecate quic_fix_packet_number_length 2020-08-25 dschinazi Deprecate quic_dispatcher_legacy_version_encapsulation 2020-08-25 renjietang Deprecate gfe2_reloadable_flag_quic_do_not_close_stream_again_on_connection_close 2020-08-25 wub Fix client supported versions when quic_client reconnects. Client code only, not protected. 2020-08-25 danzh (n/a, not in use) Make IETF probing packets not always contribute to RTT measurement. 2020-08-24 fayang Deprecate gfe2_reloadable_flag_quic_determine_serialized_packet_fate_early. 2020-08-24 fayang Reorder Q050 before all other versions in server Alt-Svc 2020-08-24 fayang In QUIC, increase anti_amplifcation_factor from 5 to 10 to verify it is responsible for ALTERNATE_PROTOCOL_USAGE_LOST_RACE issue. 2020-08-24 danzh (n/a, not in use) add interfaces to set up peer address in QuicPacketCreator which the serialized packets are sent to through out the current call stack. No protected. Created with: roll-dep src/net/third_party/quiche/src R=dschinazi@chromium.org Change-Id: I0d0903270bc579922ff478abdcf32a1e025c9a7d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376373Reviewed-by:
David Schinazi <dschinazi@chromium.org> Commit-Queue: Victor Vasiliev <vasilvv@chromium.org> Cr-Commit-Position: refs/heads/master@{#801621}
-
Rakib M. Hasan authored
Follow up to crrev.com/c/2343983. Instead of hardcoding reviewers for CL's generated by the build_weblayer_version_tests_apk_cipd_pkg recipe we can add the --tbr-reviewers command line to the "git cl upload" command invoked by the recipe. Then an owner for the variants.pyl file will be added as a post submit reviewer. R=estaab@chromium.org, mmoss@chromium.org Bug: 1041619 Change-Id: Ic32c38670f4a05d45c1d99b550e1c29f02360373 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373295Reviewed-by:
Erik Staab <estaab@chromium.org> Reviewed-by:
Michael Moss <mmoss@chromium.org> Commit-Queue: Rakib Hasan <rmhasan@google.com> Cr-Commit-Position: refs/heads/master@{#801620}
-
chromium-internal-autoroll authored
Release_Notes:http://go/media_app-x20/relnotes/Nightly/media_app_202008250800_RC00.html https://chrome-infra-packages.appspot.com/p/chromeos_internal/apps/media_app/app/+/gK0jWjCbv2pog8c8oLyWz6k0XrWhmsjGf59KCV9AIcgC If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/media-app-chromium-autoroll Please CC media-app@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.chrome.try:linux-chromeos-chrome Bug: b/161305019,b/161863554,b/162542070 Tbr: media-app@grotations.appspotmail.com Change-Id: I0e51945ac1abf44c4731a655434370244a417f4b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374809Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#801619}
-
Nate Chapin authored
There are 4 places Document::GetExecutionContext() is currently invoked in WebDocument: * GetSecurityOrigin() is the only one of the 4 that null-checks it. * OutgoingReferrer() is unused and can be removed. * GetReferrerPolicy() has a single use that can easily be adjusted so that it can be removed. * IsSecureContext() needs a null-check. Bug: 1121726 Change-Id: I0f65a56909e4bc1a5ee6aee30e0e59c8c698b434 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375704 Commit-Queue: Kentaro Hara <haraken@chromium.org> Auto-Submit: Nate Chapin <japhet@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#801618}
-
edchin authored
This CL removes an unused deprecated method in SnapshotTabHelper. Bug: 917929 Change-Id: Iba8cf2864790b5a24279cfd846695e7a21893d25 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376545Reviewed-by:
Justin Cohen <justincohen@chromium.org> Commit-Queue: edchin <edchin@chromium.org> Cr-Commit-Position: refs/heads/master@{#801617}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/65f9045b37a9..c5676b9e6c83 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC xiaochengh@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.chrome.try:linux-chromeos-chrome Bug: chromium:1099917,chromium:1106626,chromium:1115567,chromium:1117222,chromium:1121713,chromium:912681 Tbr: xiaochengh@google.com Change-Id: I586708e63dfd1026f2b6240bc4628b4a61c839b5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376485Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#801616}
-
- 25 Aug, 2020 22 commits
-
-
Weilun Shi authored
We also need to sort and combine the histogram-suffixes-list node in the merge_xml. The pretty-print function assumed there is only one histogram-suffixes-list node and it dropped all histogram-suffixes nodes in the split histogram_suffixes_list.xml file which resulted in missing all histograms that were generated from that xml. Added unit tests to make sure this problem won't happen again. This cl also renames histogram_suffixes.xml to histogram_suffixes_list.xml to be consistent with histograms.xml naming convention. Bug: b:164097807 Change-Id: I67144c5726acd5aa96ce1a1f597c7bf88e7eda6f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375936 Commit-Queue: Weilun Shi <sweilun@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Auto-Submit: Weilun Shi <sweilun@chromium.org> Cr-Commit-Position: refs/heads/master@{#801615}
-
Hirokazu Honda authored
There is a synchronization problem on the mapped buffer on intel skylake devices. This is due to some missing 9165 patches in kernel 3.18, and thus will be fixed if the kernel is upreved to 4.4 or newer. This bug causes a decoded content validation failure in video_decode_accelerator_tests. This is a workaround to this bug; usleep() is added after the buffer is mapped and before the frame validation if the kernel version is 3.18 and the processor is Skylake. Bug: b:149808895 Test: video_decode_accelerator_tests on sentry Change-Id: Ib77ebe0b83834e4d91bc994cbe6912348862e021 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2371724 Commit-Queue: Hirokazu Honda <hiroh@chromium.org> Reviewed-by:
Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#801614}
-
Guohui Deng authored
The new reboot reason is "UTILITY_PROCESS_CRASH". It's used when the utility process is in a crash loop. Bug: internal b/166313191 Test: None. Change-Id: I62e0ac9280505172ad1b0461f18075d70eed2bfd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376450Reviewed-by:
Luke Halliwell (slow) <halliwell@chromium.org> Commit-Queue: Guohui Deng <guohuideng@chromium.org> Cr-Commit-Position: refs/heads/master@{#801613}
-
Anastasia Helfinstein authored
Code clean-up. Does not change the behavior of Switch Access. AX-Relnotes: n/a. Bug: None. Change-Id: I49b5eefd69c9165f9729927f85779b8bdacfc224 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373290Reviewed-by:
Abigail Klein <abigailbklein@google.com> Commit-Queue: Anastasia Helfinstein <anastasi@google.com> Cr-Commit-Position: refs/heads/master@{#801612}
-
Xiaocheng Hu authored
Bug: 1049885 Change-Id: Icfc0c764791daaa9a0f60eece7818c1e5af5316d Tbr: alexmos@chromium.org NoTry: True Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376381Reviewed-by:
Xiaocheng Hu <xiaochengh@chromium.org> Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org> Cr-Commit-Position: refs/heads/master@{#801611}
-
Evan Stade authored
Bug: 1016938 Change-Id: Ib3a86b4a3e3c0356c292ce55291ef0487e94c5ae Skip-Translation-Screenshots-Check: True Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2325272 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Lijin Shen <lazzzis@google.com> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Reviewed-by:
Finnur Thorarinsson <finnur@chromium.org> Cr-Commit-Position: refs/heads/master@{#801610}
-
Chris Lu authored
For most Infobars, a banner dismissal should call InfobarDelegate::InfobarDismised(). But for SaveCard InfobarDismissed executes the completion callback, because it assumes a dismissal means the user closed out the UI. Bug: 1119907 Change-Id: I91799342554041beea8efe0b2693e635f3e5a218 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376451 Commit-Queue: Chris Lu <thegreenfrog@chromium.org> Commit-Queue: Sergio Collazos <sczs@chromium.org> Auto-Submit: Chris Lu <thegreenfrog@chromium.org> Reviewed-by:
Sergio Collazos <sczs@chromium.org> Cr-Commit-Position: refs/heads/master@{#801609}
-
Ryan Hansberry authored
Rename AdapterClient to AdapterObserver to reflect its behavior: as an observer of Bluetooth changes. Also switch from a single Remote pattern to a ReceiverSet, allowing Adapter to notify own and notify multiple AdapterObservers. This is necessary for future Nearby Connections use, where both BleMedium and BluetoothClassicMedium will listen on a single injected Adapter -- see subsequent CL crrev.com/c/2370094. Bug: b:157748957 Change-Id: If241b76f1662614b1f6061d93b9293e703b58691 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2311824Reviewed-by:
Reilly Grant <reillyg@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Ryan Hansberry <hansberry@chromium.org> Cr-Commit-Position: refs/heads/master@{#801608}
-
Tibor Goldschwendt authored
The WebUI NTP is temporarily allowed to make network requests to support the inlined OGB. The inlined OGB will soon be replaced by an iframed OGB, which can be activated via the #ntp-iframe-one-google-bar feature flag. This CL restricts network access for the WebUI NTP if this flag is enabled so that we don't inadvertently rely on network access for other features such as NTP modules. Bug: 1076506 Change-Id: I567d75dbfc083a4623d1f420f1d14ed9ef655def Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375729 Auto-Submit: Tibor Goldschwendt <tiborg@chromium.org> Reviewed-by:
Esmael Elmoslimany <aee@chromium.org> Commit-Queue: Esmael Elmoslimany <aee@chromium.org> Cr-Commit-Position: refs/heads/master@{#801607}
-
Mike Dougherty authored
Bug: 694859, 891834 Change-Id: I32703be2378b43235cd2343c36946fe9cbb45a34 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375800Reviewed-by:
Eugene But <eugenebut@chromium.org> Commit-Queue: Eugene But <eugenebut@chromium.org> Auto-Submit: Mike Dougherty <michaeldo@chromium.org> Cr-Commit-Position: refs/heads/master@{#801606}
-
Joe Mason authored
Ads measurements that use V8PerFrameMemoryReporter will run on Android so the assumption that it can be turned off on Android to save memory is obsolete. R=dcheng Bug: 1117176 Change-Id: Ia73718d52cfb33aebed31033961ef84f678fc532 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375935Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Joe Mason <joenotcharles@chromium.org> Cr-Commit-Position: refs/heads/master@{#801605}
-
Anastasia Helfinstein authored
As part of the overall effort to share more code between the accessibility component extensions, move Switch Access' RectUtil class into the common/ directory. This change is a pure refactor. AX-Relnotes: n/a. Bug: None. Change-Id: I2980080ad643bef76720095c67bbd9165e645f6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2368481Reviewed-by:
Akihiro Ota <akihiroota@chromium.org> Commit-Queue: Anastasia Helfinstein <anastasi@google.com> Cr-Commit-Position: refs/heads/master@{#801604}
-
Daniel Rubery authored
Following UX feedback, we add an animation that runs during deep scanning. Screencast: https://screencast.googleplex.com/cast/NjI3ODYxNjQ2OTk5NTUyMHwzMTZhNTk3YS02ZA Fixed: 1076092 Change-Id: I1b12fcb88409740842bf5aeed6d5927ab94533bc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367115 Commit-Queue: Daniel Rubery <drubery@chromium.org> Reviewed-by:
Shakti Sahu <shaktisahu@chromium.org> Cr-Commit-Position: refs/heads/master@{#801603}
-
Robert Ma authored
using the ad-hoc script in PS1: https://crrev.com/c/2376484/1/third_party/blink/tools/clean_up_1115767.py Bug: 1115767 Change-Id: Ief86241dd69fb78d9eb5a0c05687a29f53589efc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376484 Commit-Queue: Robert Ma <robertma@chromium.org> Commit-Queue: Rakib Hasan <rmhasan@google.com> Auto-Submit: Robert Ma <robertma@chromium.org> Reviewed-by:
Rakib Hasan <rmhasan@google.com> Cr-Commit-Position: refs/heads/master@{#801602}
-
Prakhar authored
As per estaab@'s suggestion here https://docs.google.com/document/d/1Q9oYW2w0-QTR6R8uI6yjriFu75e6_K50qcHyj3lda6c/edit?disco=AAAAKHpexIU Bug: 1024915 Change-Id: I5676a1cf4983204403f0166feedfc3b95918d91d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2374922 Commit-Queue: Prakhar Asthana <pasthana@google.com> Commit-Queue: Erik Staab <estaab@chromium.org> Auto-Submit: Prakhar Asthana <pasthana@google.com> Reviewed-by:
Erik Staab <estaab@chromium.org> Cr-Commit-Position: refs/heads/master@{#801601}
-
Joel Hockey authored
I never heard of anyone using this feature, so I'm happy to delete the flag rather than extend. We can always add it back. Bug: 1012169 Change-Id: I99a26d7575367a212f5e62004d1b0786c1d891bd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373825 Commit-Queue: Joel Hockey <joelhockey@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#801600}
-
Jerome Jiang authored
https://aomedia.googlesource.com/aom.git/+log/4dcbd921c3a6..e2219b84bc9d $ git log 4dcbd921c..e2219b84b --date=short --no-merges --format='%ad %ae %s' 2020-08-17 huisu Minor optimizations for warped motion sampling 2020-08-18 marpan rtc: Add off state for coeff/mode-upd-freq 2020-08-16 vishesh.garg Extend av1_ml_predict_breakout() to hbd encoding 2020-08-18 yunqingwang Increase TPL stats block size for res < 720p 2020-08-17 wtc Fail if prev frame is not done on new temp. delim. 2020-08-14 chengchen Distinguish use screen content tools and screen content type 2020-08-14 marpan rtc-svc: Adjust use_modeled_non_rd_cost for layers 2020-08-12 kmalladi Add HighBD SSE2 Temporal Filter 2020-08-17 wtc Misc improvements to build_av1_dec_fuzzer.sh 2020-08-17 angiebird Add general description for coefficient coding (...) 2020-07-22 debargha Remove TwoPassCfg struct & absorb stats_in in oxcf 2020-07-22 debargha Move vbrmin/max_section/vbrbias to RateControlCfg 2020-07-23 sanampudi.venkatarao Add comments for motion search method 2020-07-21 paulwilkins Resolve document references for temporal filtering 2020-07-22 jzern correct googletest version info 2020-07-20 marpan rtc: Add dynamic resize mode, to 1 pass CBR 2020-07-22 jingning Remove redundant frame_parameter_update setting in rt sp7 2020-07-21 mufaddal.chakera Move AltRefForcedKeyTestLarge to kf_test.cc 2020-06-11 deepa.kg Fix issues reported by valgrind in intra pred modules 2020-07-21 paulwilkins Resolve frame buffer type reference. Created with: roll-dep src/third_party/libaom/source/libaom R=jzern@google.com Change-Id: I681f109f1eca1aca886e14995a54c67e50c4d023 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367800Reviewed-by:
James Zern <jzern@google.com> Commit-Queue: Jerome Jiang <jianj@google.com> Cr-Commit-Position: refs/heads/master@{#801599}
-
David Tseng authored
This support allows Switch Access to ignore focus events on omnibox it triggers tiself. Fixed: 1113669 Change-Id: I8c6f94bfc6c3547e114d5fbe408af9ed6cfdd1ad Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2373223 Commit-Queue: David Tseng <dtseng@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#801598}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/288014f2..30f6538a 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,vahl@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I6c5fa3c8c9f95d13f997dc377b03244a6ea87a3d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376285Reviewed-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@{#801597}
-
Erik Staab authored
The tests pass with and without GPUs and this will slightly improve utilization and pending times. Bug: 1115109 Change-Id: I33f026dac158f124581c14e5bc2ae419123a7d4f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2294092Reviewed-by:
Dirk Pranke <dpranke@google.com> Commit-Queue: Erik Staab <estaab@chromium.org> Cr-Commit-Position: refs/heads/master@{#801596}
-
Chromium WPT Sync authored
Using wpt-import in Chromium e1c948be. With Chromium commits locally applied on WPT: 9f52c7e4 "COOP: add reporting to redirects" d18db804 "Fix test flake in animation-state-changes-positive-playback-rate.html" aab733a4 "[Document Policy] Migrate sync-script to document policy" Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md Directory owners for changes in this CL: foolip@chromium.org: external/wpt/fullscreen NOAUTOREVERT=true TBR=robertma@google.com No-Export: true Change-Id: Idfe1b83b9cd3ce3a4dc5b67898de2f0571d15669 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2375059Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#801595}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/b09f2bb2f282..dff2104727dc 2020-08-25 ddoman@chromium.org [resultdb] moves the cipd pin of infra/tools/rdb 2020-08-25 brucedawson@chromium.org Shorten hash to avoid MAX_PATH limits 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: chromium:1120785,chromium:1121678 Tbr: ajp@google.com,apolito@google.com,ehmaldonado@google.com,sokcevic@google.com Change-Id: Iee839bae6ebc556b93af19bac35f6b9468b2608c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2376431Reviewed-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@{#801594}
-