- 27 Oct, 2020 12 commits
-
-
Roman Arora authored
Remove the tab_search directory from .gitignore and custom gitignore file from tab_search_merge directory as part of source migration effort. Bug: 1134167 Change-Id: I3082094118a3b2622ca680d0f9c80b4650d1367d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2498826Reviewed-by:
Yuheng Huang <yuhengh@chromium.org> Reviewed-by:
Thomas Lukaszewicz <tluk@chromium.org> Commit-Queue: Roman Arora <romanarora@chromium.org> Cr-Commit-Position: refs/heads/master@{#820990}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/306f03788f83..4f6c1bb4191b 2020-10-26 yuhengh@chromium.org Support testing WebUI in non-content area 2020-10-26 bsheedy@chromium.org [devil] Only raise exception if forwarder not killed 2020-10-26 brucedawson@chromium.org Reduce warning output in tests If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/catapult-autoroll Please CC zhanliang@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:chromeos-kevin-rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Bug: chromium:1038789,chromium:1084931,chromium:1099917 Tbr: zhanliang@google.com Change-Id: I86592b8a568adde7aeb83b76943275c7ff9d93b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500241Reviewed-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@{#820989}
-
Boris Sazonov authored
The feature has been rolled out and the flag removed. Bug: None Change-Id: I0579819f0d079cb24363fcad5326349be098bc90 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2489633Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#820988}
-
Nancy Wang authored
There are a few crash issues which could be related with reuse the destroyed window. The crash issues are hard to reproduce. This CL modifies the OnWindowDestroying function. Even if the app id is empty, still check the related structure, e.g. aura_window_to_app_window_, arc_tracker_, to remove the window from all related variables to remove the window. BUG=1128491 BUG=1126493 Change-Id: I842a79f3994b00af08b01c4095b890525655ea87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2496102Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Nancy Wang <nancylingwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#820987}
-
Xianzhu Wang authored
This at least ensures that we will update the paint properites for the composited overflow control layers in pre-CompositeAfterPaint to avoid stale properties on the layers. The test doesn't actually reproduce the bug because any test simpler than the bug case couldn't reproduce the bug as the update would be triggered in other code paths (any style change, layout change, etc.). Anyway this CL does fix the bug case. Bug: 1137603 Change-Id: I5cca970bcf8cda6085527f79a97f269c4e3e9986 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500264Reviewed-by:
Stefan Zager <szager@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#820986}
-
Anne Lim authored
Rename EnableAutofillInfoBarAccountIndicationFooter flag to EnableAutofillPasswordInfoBarAccountIndicationFooter since it has been decided that the footer for Payments and Password InfoBars will have separate rollouts. Bug: 1135847 Change-Id: I24e61dd7315b869378bfd1857d70bea59aee6b31 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2495967Reviewed-by:
Marc Treib <treib@chromium.org> Reviewed-by:
Tommy Martino <tmartino@chromium.org> Commit-Queue: Anne Lim <annelim@google.com> Cr-Commit-Position: refs/heads/master@{#820985}
-
Daniel Cheng authored
Replace both uses with base::UmaHistogramSparse, since neither metric is recorded in a hot code path. Bug: 1047547 Change-Id: I7237163b9918ef933756627f0191e756b8304f06 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499804 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Auto-Submit: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#820984}
-
Christoph Schwering authored
This CL adds a type-safe set container for dense integers, following std::set's API. Currently, there are multiple use-cases in Autofill of the following two patterns to express sets of small, dense integers: Pattern 1: enum class E { A = 1, B = 2, C = 3, ... }; std::set<E> set; set.insert(B); Pattern 2: enum E { A = 1 << 0, B = 1 << 2, C = 1 << 3, ... }; uint32_t bitmask = 0; bitmask |= B; This CL's container combines the type-safety of the former pattern with the efficiency of the latter. Bug: 1007974 Change-Id: Ida9b9cec244119a27eca2c171b4fb2f52443d099 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2350423 Commit-Queue: Christoph Schwering <schwering@google.com> Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#820983}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/84938ab95122..6dce2946f57c 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 slightlyoff@google.com,avi@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:1138554 Tbr: slightlyoff@google.com,avi@google.com Change-Id: I7909adee1ca66c3c203ef24f22afd38c90881597 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499962Reviewed-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@{#820982}
-
Phillis Tang authored
Make sure web app tests on desktop do not unintentionally deploy OS hooks. A separate CL will handle chromeOS specific tests. Bug: 1124383 Change-Id: I3b5130cdf3754cd84267260d53dbf5ff12a6f59e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2399500 Commit-Queue: Phillis Tang <phillis@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Alan Cutter <alancutter@chromium.org> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Cr-Commit-Position: refs/heads/master@{#820981}
-
Alexis Hetu authored
Some Android specific YUV related checks should no longer be necessary now that proper support exists in Skia for these cases. Bug: 985458 Change-Id: Ic53aeee278a7751fdfecc532b185bf4dc91fc892 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500243Reviewed-by:
Sunny Sachanandani <sunnyps@chromium.org> Reviewed-by:
Andres Calderon Jaramillo <andrescj@chromium.org> Commit-Queue: Alexis Hétu <sugoi@chromium.org> Cr-Commit-Position: refs/heads/master@{#820980}
-
chromium-autoroll authored
https://chromium.googlesource.com/openscreen.git/+log/83e50af3e0bd..2837c9f0c416 2020-10-26 miu@chromium.org Add StringPrintf() wrapper utility. If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/openscreen-chromium Please CC jophba@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 Bug: None Tbr: jophba@chromium.org Change-Id: I3acac321cb930b632ff7ef973c439862aa319877 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500044Reviewed-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@{#820979}
-
- 26 Oct, 2020 28 commits
-
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/546b189d859d..6b0ecd8197ff 2020-10-26 kimanh@chromium.org Add linear memory inspector viewer component 2020-10-26 jalyn@microsoft.com Settings: Add reset button for shortcut editor 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:1110202,chromium:174309 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I412dac67caa4232e747896c5b092bde8ced3a148 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500361Reviewed-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@{#820978}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/aaea0d98fb64..36af02d2efd7 2020-10-26 kjlubick@google.com Add define to WASM GM build 2020-10-26 robertphillips@google.com Add additional GrThreadSafeCache test case 2020-10-26 herb@google.com add API for Op creation 2020-10-26 mtklein@google.com tweak build for msan swiftshader 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 jcgregorio@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: chromium:1108408 Tbr: jcgregorio@google.com Change-Id: I895e46f05bfecf42f382a1c34c1390a6ece64ed9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500045Reviewed-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@{#820977}
-
Bence Béky authored
https://quiche.googlesource.com/quiche.git/+log/d84ef00c9666..d15ae2bf593a $ git log d84ef00c9..d15ae2bf5 --date=short --no-merges --format='%ad %ae %s' 2020-10-23 bnc Move protocol flags out of platform so that they are included in QUICHE. 2020-10-23 mattm Move num_failed_authentication_packets_received to QuicConnectionStats and fix QuicConnectionTest.IntegrityLimitDoesNotApplyWithoutDecryptionKey 2020-10-23 vasilvv Replace QUIC_FALLTHROUGH_INTENDED with ABSL_FALLTHROUGH_INTENDED. 2020-10-23 wub If B2SL option is set in QUIC BBR2, when STARTUP exits due to loss, it will set the inflight_hi to the max of bdp and max_bytes_delivered_in_round. 2020-10-23 mattm Add QuicConfig::KeyUpdateSupportedRemotely getter. 2020-10-23 dschinazi Add code counts for building version negotiation packets 2020-10-23 dschinazi Remove unused QuicPacketCreator::SerializeVersionNegotiationPacket 2020-10-23 haoyuewang Reduce quic::ConnectionId size from 24 bytes to 16 bytes on 64 bit system. This reduces some memory usage of connection & session on the server side. 2020-10-23 mattm Add QuicFramer::PotentialPeerKeyUpdateAttemptCount() method. 2020-10-23 vasilvv Downgrade a QUIC_BUG to a warning. Created with: roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src Change-Id: Ic48658bba769f3090639334f314f09053f9db28e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2495402 Commit-Queue: Bence Béky <bnc@chromium.org> Reviewed-by:
David Schinazi <dschinazi@chromium.org> Cr-Commit-Position: refs/heads/master@{#820976}
-
Internal Frameworks Autoroller authored
TBR=bling-team@google.com Change-Id: I3a9e594e784e357b2690e74ab618b272a63e252f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499821Reviewed-by:
Internal Frameworks Autoroller <bling-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: Internal Frameworks Autoroller <bling-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#820975}
-
Daniel Cheng authored
All uses have been migrated to use the //base helpers directly instead. Bug: 1047547 Change-Id: I3a293faba3d894dcf8af420e58159116bb518f74 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500001 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Commit-Queue: Jeremy Roman <jbroman@chromium.org> Auto-Submit: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#820974}
-
Boris Sazonov authored
Adds MobileIdentityConsistency to testing/variations/fieldtrial_testing_config.json and adds explicit @DisableFeatures to the affected tests. Bug: 1128916, 1142467 Change-Id: I25afb6de05d2ce232f1006a8497884f9db18d52e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2489895 Commit-Queue: Boris Sazonov <bsazonov@chromium.org> Auto-Submit: Boris Sazonov <bsazonov@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Cr-Commit-Position: refs/heads/master@{#820973}
-
Andrew Xu authored
In RoundedImageView, we expect to get the size of the stored image via GetPreferredSize(). However, RoundedImageView may have its preferred size. As a result, CalculatePreferredSize() overridden by RoundedImageView is never called. It makes the area to paint the image bigger than the size of the image. Meanwhile, the canvas function to paint the image uses tiling flag as default. It is why a small image is tiled. This CL uses GetImageSize() in replace of GetPreferredSize(). The side effect is handled. Add DCHECK to verify. Bug: 1139498 Change-Id: Ia03c3366f22c8ce7d2c9326fd1097cab3e4ba563 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499170 Commit-Queue: Andrew Xu <andrewxu@chromium.org> Reviewed-by:
Alex Newcomer <newcomer@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#820972}
-
Bo Liu authored
Webview currently crashes on context loss: https://source.chromium.org/chromium/chromium/src/+/master:android_webview/browser/gfx/output_surface_provider_webview.cc;drc=8bab2d6d39d8399e64d5f8369226403495e86d98;l=38 So that provides a shortcut for enabling vulkan for webview without having proper clean up. Move the kWebViewEnableVulkan to gpu/config, and use it to enable vulkan for in-process gpu, only on android. Bug: 1095744 Change-Id: Idcf0df6f2776012c2ea695d161f457ad48dde203 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499219 Commit-Queue: Bo <boliu@chromium.org> Reviewed-by:
Jonathan Backer <backer@chromium.org> Cr-Commit-Position: refs/heads/master@{#820971}
-
Torne (Richard Coles) authored
The metric for re-initializing WebView showed that this is indeed what a small number of apps are doing in a very small proportion of cases. While we don't make any guarantees that this will work and the app might just crash in other ways, there's no benefit to it failing in AwDataDirLock in particular, so it seems preferable to just tolerate it here. So, just allow init to continue if we're already holding the lock, and if we already opened the file but didn't acquire the lock, reuse the already open file to try again, so that we don't end up racing with the finalizer of the old file object and potentially cause more problems. This should prevent us from hitting the OverlappingFileLockException in this code, though apps that are in this state may simply crash somewhere else in initialization later. Fixed: 1054774 Change-Id: I8aade5278a7fad10433a97068e36fbf63196e67a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2498109 Auto-Submit: Richard Coles <torne@chromium.org> Commit-Queue: Nate Fischer <ntfschr@chromium.org> Reviewed-by:
Nate Fischer <ntfschr@chromium.org> Cr-Commit-Position: refs/heads/master@{#820970}
-
chrome://media-appDavid Lei authored
Change-Id: I12f5c4bf407cc397803c31fdcf50d28ef606ee10 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2497940 Auto-Submit: David Lei <dlei@google.com> Commit-Queue: Patti <patricialor@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Reviewed-by:
Patti <patricialor@chromium.org> Cr-Commit-Position: refs/heads/master@{#820969}
-
Patrick Noland authored
Bug: 1138739 Change-Id: Iecab6daf9b8caa37abb55ca2f7d4998768dec1a6 TBR: wychen@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2500312Reviewed-by:
Patrick Noland <pnoland@chromium.org> Commit-Queue: Patrick Noland <pnoland@chromium.org> Cr-Commit-Position: refs/heads/master@{#820968}
-
Yuly Novikov authored
This is the only bot targeting 10.13.6, so we are upgrading the rest of machines to 10.14.6 TBR=bsheedy Bug: 1142558 Change-Id: I45ec3e6347f546090ad53011ff63857a73f55cce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499346Reviewed-by:
Yuly Novikov <ynovikov@chromium.org> Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#820967}
-
Hoch Hochkeppel authored
Adding a class to represent the Windows UriRuntimeClassFactory class within tests, as well as basic unit tests to validate the test class behaviors. The class behaves similarly to the Windows equivalent, except it includes additional validations for expected usage. Bug: 1035527 Change-Id: I8296dc31596e2331f63250c303fbfe29f6e35713 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2498950 Commit-Queue: Hoch Hochkeppel <mhochk@microsoft.com> Reviewed-by:
Eric Willigers <ericwilligers@chromium.org> Cr-Commit-Position: refs/heads/master@{#820966}
-
Meilin Wang authored
This CL polishes the Phone Hub panel including: - Relayouts the continue browsing chip. - Removes the separators. Screenshot: https://screenshot.googleplex.com/8uHj96SrADLFmAc.png Misc: removes unused headers. BUG=1106937,1126208 Change-Id: I0c1c2bef1883c6a8a188fde7c287a0a1bddbdf5d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2494023 Commit-Queue: Meilin Wang <meilinw@chromium.org> Reviewed-by:
Tim Song <tengs@chromium.org> Reviewed-by:
Andre Le <leandre@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#820965}
-
Martin Robinson authored
This value was exposed via the name "AXHasPopupValue", while WebKit exposes this value via "AXPopupValue." Fix the attribute name, which in turn fixes an issue with how popup buttons are announced in VoiceOver. Bug: 1129678 Change-Id: Iede26b2fd6ddb9d7717fcb47fd1dd1cce5b74075 AX-Relnotes: Fix an issue with the announcement of popup buttons in VoiceOver. Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2489985 Commit-Queue: Aaron Leventhal <aleventhal@chromium.org> Reviewed-by:
Aaron Leventhal <aleventhal@chromium.org> Cr-Commit-Position: refs/heads/master@{#820964}
-
Rakib M. Hasan authored
Android expectations files This will remove developer pain while we work on setting up permanent builders that run WPT on Android and figure out a more concrete solution for crbug.com/1141061. Bug: 1141061 Change-Id: I19b8a65d0c5a4753013f57026f69fef9b5038247 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499176Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Commit-Queue: Rakib Hasan <rmhasan@google.com> Cr-Commit-Position: refs/heads/master@{#820963}
-
Alex Moshchuk authored
Currently, if a sad frame becomes visible on a tab that's being reloaded, the sad frame is recorded as kShownAfterCrashing. Since we mark hidden tabs for reload if they contain a sad frame, activating that reload when the user switches to such a tab, and since the tab reload is going to wipe out the old document along with the sad frame, it's misleading to count that sad frame in that category, since it's going to disappear momentarily and thus has a lower impact on user experience. Instead, count such sad frames in a new category, kShownWhileAncestorIsLoading. This category is used whenever there's a pending cross-document navigation in an ancestor frame which would wipe out the sad frame that was just shown. Bug: 1132938 Change-Id: Ibd32919af28f8a1545cbbb3e2964a19e921e8f5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2482425Reviewed-by:
Łukasz Anforowicz <lukasza@chromium.org> Commit-Queue: Alex Moshchuk <alexmos@chromium.org> Cr-Commit-Position: refs/heads/master@{#820962}
-
Jon Mann authored
Previously when details on the active row changed, users with a screenreader were not notified. This change allows the screenreader to announce changes as they happen. In order to determine which row is focused, this also adds an an isFocused property to FocusRowBehavior. Bug: 720274 Change-Id: I3ba1d41200c0fdd1383ec548870ec71e395b2edb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2489959Reviewed-by:
Esmael Elmoslimany <aee@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: Jon Mann <jonmann@chromium.org> Cr-Commit-Position: refs/heads/master@{#820961}
-
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 chonggu@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: chonggu@google.com Change-Id: Iacfa17c939b8ccddb5ed49cbc4eb39689753f7da Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499702Reviewed-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@{#820960}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/6f9b1bfd4849..c54539538ed6 2020-10-26 chanli@chromium.org [depot_tools] Roll led to latest 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:1141272 Tbr: ajp@google.com,apolito@google.com,ehmaldonado@google.com,sokcevic@google.com Change-Id: I215bacbfcb335ebf6a0701f81d96161dd1f03d31 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2498852Reviewed-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@{#820959}
-
David Tseng authored
Scenario: - TtsService calls GoogleTtsInitBuffered/GoogleTtsReadBuffered and an error is returned - TtsService communicates this error to the component extension via mojo TtsEventObserver.onError - in js, the onError handler calls window.close (yet to be sent out for review) - the non-persistent background page closes - in TtsService, mojo::PendingReceiver<mojom::TtsStream> is disconnected, causing the process to exit - on the next call to speak() from any client api (extension, web speech), the component extension is re-awakened by the extension system - in js, a new TtsStream connection is requested/established kicking off the rest of the initialization in TtsEngineExtensionObserver - before re-launching the service, ref keep alive counting logic gets called (accounting for the presence of ChromeVox or STS) to keep the newly opened background page alive - the TtsService process is re-launched R=dmazzoni@chromium.org Test: force TtsService to call onError after 20 utterances after calling GoogleTtsInitBuffered. Observe tts restarts and keeps working with ChromeVox. Change-Id: Id54db152fc5aa1e069ae9de8a603ee41435c1059 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2496287Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#820958}
-
Tommy Nyquist authored
fgorski@chromium.org has shown over a long time that they're able and willing to be a steward of //chrome. Bug: None Change-Id: Ic13fe9ce75b27dd34d77cf26e518d4bbf11eb2fc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2485046Reviewed-by:
David Trainor <dtrainor@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Commit-Queue: Tommy Nyquist <nyquist@chromium.org> Cr-Commit-Position: refs/heads/master@{#820957}
-
Lei Zhang authored
It has been #ifdef'd out for several years. Bug: 662501 Change-Id: Id3c36148e2cc07e084e8280493e5c5da28149973 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2496501 Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#820956}
-
minch authored
Screenshot for IDS_ASH_SCREEN_CAPTURE_TOOLTIP_SCREENRECORD was used before. Bug: 1142099 Change-Id: Ia54a7b34a23ce412f73b9e08a71cc377ec579b60 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499802 Commit-Queue: Min Chen <minch@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#820955}
-
chromium-autoroll authored
https://dawn.googlesource.com/tint.git/+log/1bafdc3c45e7..57694c8dab3c 2020-10-26 rharrison@chromium.org Change test terminology to reflect WebGPU spec If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/tint-chromium-autoroll Please CC rharrison@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: rharrison@google.com Change-Id: I13656e89d74d3f278a921a265fdab1efbd52aa6c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499701Reviewed-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@{#820954}
-
Etienne Pierre-doray authored
Ablation study to evaluate impact of Jobs API. This CL splits job specific behavior in several features: - worker wake up strategy (with additional serial strategy) - yield - fair scheduling - priority update Additional study specific to Jobs: wakeup after getwork: This has the potential benefit of reducing lock contention when workers wakeup. Bug: 1139440 Change-Id: I5397977352650ee30557dc8972f32df34798b398 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2481522 Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Cr-Commit-Position: refs/heads/master@{#820953}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/5dafe107a36e..5d0458fa5c2d 2020-10-26 m.maiya@samsung.com Vulkan: Add OES_shader_multisample_interpolation support 2020-10-26 jmadill@chromium.org Capture/Replay: Test improvements. 2020-10-26 angle-autoroll@skia-public.iam.gserviceaccount.com Roll Vulkan-ValidationLayers from 7d11021098f2 to 03f6ffd1dc46 (27 revisions) 2020-10-26 geofflang@google.com GL: Use ANGLE_GL_TRY for draw calls. 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/+doc/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;luci.chromium.try:linux-swangle-try-x64;luci.chromium.try:win-swangle-try-x86 Bug: None Tbr: geofflang@google.com Change-Id: I8e32ca8fdc3dc3c8151055f13bf166c499e1c867 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2499601Reviewed-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@{#820952}
-
tby authored
Right now, the search providers for apps and arc apps create a single ChromeSearchResult object for each search result. This result is given the display type kTile, which then shows up in the app tiles and the suggestion chips. We want to apply different scoring and ranking logic to these two UI surfaces, so we can do things like incorporate files into the suggestion chips. However to do this, we need to be able to assign different scores to results destined for the app tiles or chips. This requires we create two independent ChromeSearchResult objects. This CL: 1. Changes the meaning of ash::SearchResultDisplayType::kTile to refer to only the app tiles, not both the app tiles and suggestion chips. kChip continues to refer to just the chips. 2. Modifies the SuggestionChipContainerView to filter on only kChip. 3. Make the AppSearchProvider and ArcPlaystoreSearchProvider create two objects for each result, with a display type of kTile and kChip. 4. Increase the max results of the providers to account for double the number of results (nb. max result limits are going to be removed soon). Bug: 1028447 Change-Id: Ifd261cba9c03fdc31d4bc38964b3101df20cf841 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2474081Reviewed-by:
Rachel Carpenter <carpenterr@chromium.org> Reviewed-by:
Nancy Wang <nancylingwang@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Rachel Wong <wrong@chromium.org> Commit-Queue: Tony Yeoman <tby@chromium.org> Cr-Commit-Position: refs/heads/master@{#820951}
-