- 15 Jul, 2020 40 commits
-
-
Dana Fried authored
These are important for hover card and tablet tabstrip performance monitoring. Bug: 1105000 Change-Id: Icc65936d1407a044afb58aaef12d8a002283ccc5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298710Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Dana Fried <dfried@chromium.org> Cr-Commit-Position: refs/heads/master@{#788735}
-
Ben Pastene authored
This is a reland of 8f372d5f Reason for reland: - All hand-rolled DEPS-consuming apps have been updated. - No changes in this CL between original & reland. Original change's description: > Split the cros_boards gclient var into two for fetching QEMU images. > > This will help with the TODO at: > https://source.chromium.org/chromium/chromium/src/+/master:build/config/chromeos/rules.gni;drc=ded9eb5153bb13b3f8821a6fa6fac6b3f0f590fd;l=22 > > It will also remove the need for hard-coding the names of all these > QEMU-compatible boards. > > Bug: 937821 > Change-Id: Iab180fc012bd694b4908ba0654da93d42e2274fa > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2265498 > Commit-Queue: Ben Pastene <bpastene@chromium.org> > Reviewed-by: Erik Chen <erikchen@chromium.org> > Reviewed-by: Dirk Pranke <dpranke@google.com> > Cr-Commit-Position: refs/heads/master@{#786005} Bug: 937821, 1103538 Change-Id: I6124b41f5032d9daffd4b9747ec3a974b19c6db4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2299469Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@google.com> Commit-Queue: Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#788734}
-
Katie D authored
This matches UX spec for these reader mode strings. AX-Relnotes: n/a Bug: 1041918 Change-Id: I12c1e54a684c42b655581851a15fc45c4850a9c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2292695 Commit-Queue: Katie Dektar <katie@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Cr-Commit-Position: refs/heads/master@{#788733}
-
Andrew Grieve authored
Bug: 1041930 Change-Id: Id4419b20a9f586bb4e00a751f7e10a36ac3f1a44 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2297729Reviewed-by:
Dan Sanders <sandersd@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Commit-Queue: Andrew Grieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#788732}
-
Torne (Richard Coles) authored
Check final_android_sdk instead of public_android_sdk when deciding how to set the APK versionCode. This is a no-op for upstream as they are always the same, but for downstream builds means that we will only add the +50 offset when we're building against a preview SDK, instead of also adding it when we're building with a final-but-not-yet-upstreamed SDK. Bug: 1025990 Change-Id: Ife01462fa3f214760e88f498e33fca2c3d1c5c58 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300265Reviewed-by:
Ben Mason <benmason@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Commit-Queue: Richard Coles <torne@chromium.org> Cr-Commit-Position: refs/heads/master@{#788731}
-
Mike Wittman authored
The build id flag was enabled in non-official builds in https://crrev.com/776312. The tests depending on it can now be enabled in that configuration. Bug: 870919 Change-Id: I37e7bc2fbfad4b6df2126071652c4c5982e84e90 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2296263 Commit-Queue: Wez <wez@chromium.org> Auto-Submit: Mike Wittman <wittman@chromium.org> Reviewed-by:
Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#788730}
-
Andrew Grieve authored
Bug: 1102997 Change-Id: I66520edcde45c937d162d6fdf5e566cd0f21a949 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2292782 Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> Reviewed-by:
Edward Lesmes <ehmaldonado@chromium.org> Auto-Submit: Andrew Grieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#788729}
-
Anand K Mistry authored
DictionaryValue::RemoveWithoutPathExpansion() is deprecated. For the case where nullptr is passed for the output argument, Value::RemoveKey() is a trivial replacement. Mostly done with the following command line, plus a bit of finesse: % git grep -l RemoveWithoutPathExpansion | \ xargs sed -E -i 's/RemoveWithoutPathExpansion\((.*), nullptr/RemoveKey\(\1/g' Bug: 646113 This CL was uploaded by git cl split. R=xdai@chromium.org Change-Id: I404ebeab57af22c4e7ad6521b4f3811bd56883df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298819 Auto-Submit: Anand K Mistry <amistry@chromium.org> Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#788728}
-
ssid authored
Register histogram obvserver in startup tracing, so we do not miss the early histograms. Change-Id: I028cc11fe9d29b936c159f1d60f6305d6cdf6597 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298326Reviewed-by:
Eric Seckler <eseckler@chromium.org> Commit-Queue: ssid <ssid@chromium.org> Cr-Commit-Position: refs/heads/master@{#788727}
-
Anand K Mistry authored
DictionaryValue::RemoveWithoutPathExpansion() is deprecated. For the case where nullptr is passed for the output argument, Value::RemoveKey() is a trivial replacement. Mostly done with the following command line, plus a bit of finesse: % git grep -l RemoveWithoutPathExpansion | \ xargs sed -E -i 's/RemoveWithoutPathExpansion\((.*), nullptr/RemoveKey\(\1/g' Bug: 646113 This CL was uploaded by git cl split. R=sky@chromium.org Change-Id: Id6619facec9d05362ad17336602b5764fda46647 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2297036 Auto-Submit: Anand K Mistry <amistry@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#788726}
-
Justin Miron authored
This is a reland of 3f8e5c2d. This change was reverted as it depended on main frame intersection measurement which broke renderer frame intersection observation (crbug/1084786). The culprit CL has been fixed and has been reimplemented independent of render frame intersection observation in: https://chromium-review.googlesource.com/c/chromium/src/+/2206924. Original change's description: > Ad Density UKMs recorded in AdsPageLoad. > > This change adds ads page load metrics observer processing of > FrameIntersectionUpdates for ad frames. Each frame, including the > main frame, stores its main frame intersection in FrameData. The new > AdsArea class handles calculating the combined area of all ad frames. > Density is measured over the lifecycle of a page and the maximum denisties > are recorded. > > The two new UKMs are: MaxAdDensityByArea, MaxAdDensityByHeight. These > will be used to evaluate/motivate future interventions on page ad > density according to the Better Ads Standard. Height is needed > explicitly to match the definition of the standard. > > BUG=993453 > > Change-Id: I054a2017f56843762d39f44870848c622fc38a43 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2137771 > Commit-Queue: Justin Miron <justinmiron@google.com> > Reviewed-by: Robert Kaplow <rkaplow@chromium.org> > Reviewed-by: John Delaney <johnidel@chromium.org> > Reviewed-by: Josh Karlin <jkarlin@chromium.org> > Cr-Commit-Position: refs/heads/master@{#768347} Bug: 993453 Change-Id: I1562846669b53b2d0a0eba9392e98e63b5e66a91 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2292894Reviewed-by:
John Delaney <johnidel@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Commit-Queue: Justin Miron <justinmiron@google.com> Cr-Commit-Position: refs/heads/master@{#788725}
-
Elly Fong-Jones authored
This change avoids touching CastDialogView::GetWindowTitle, which has some actual logic for computing the title. Bug: 1075649 Change-Id: I678b72391023ae35bd9a4d9fcc4f0d99ce82d822 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300267 Commit-Queue: mark a. foltz <mfoltz@chromium.org> Reviewed-by:
mark a. foltz <mfoltz@chromium.org> Cr-Commit-Position: refs/heads/master@{#788724}
-
Peter Kasting authored
Toggling view visibility is simpler, safer, and more performant than deleting and recreating views. Additionally, this will enable more refactoring in the future to further simplify visibility setting, layout, etc. Bug: none Change-Id: I9cb961d3117bfc9fc6f7b867aab8f266ad565dc2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2295993Reviewed-by:
Shakti Sahu <shaktisahu@chromium.org> Commit-Queue: Shakti Sahu <shaktisahu@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#788723}
-
Tina Wang authored
A browser policy connector is used to check if the browser has any pref that managed by policy. Bug: 1105206 Change-Id: I1067124b42bcfb39f88ec6a10333eaaec5da44fc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2295997Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: Tina Wang <tinazwang@chromium.org> Cr-Commit-Position: refs/heads/master@{#788722}
-
Becca Hughes authored
This is a reland of c670ba45 Original change's description: > Reland "Turn on Media History by default" > > This is a reland of ccf0e2f9 > > Fixes TSAN issue in the constructor of sql::Database > by moving it to the main thread. > > Original change's description: > > Turn on Media History by default > > > > BUG=1024351 > > > > Change-Id: Id01595e63f5f776a226087741ef602ba30b80328 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2295224 > > Auto-Submit: Becca Hughes <beccahughes@chromium.org> > > Commit-Queue: Tommy Steimel <steimel@chromium.org> > > Reviewed-by: Tommy Steimel <steimel@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#787954} > > Bug: 1024351 > Change-Id: I19be665637f5c28261f7197547ddc5fe6671127e > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2296884 > Reviewed-by: Tommy Steimel <steimel@chromium.org> > Commit-Queue: Becca Hughes <beccahughes@chromium.org> > Cr-Commit-Position: refs/heads/master@{#788312} Bug: 1024351 Change-Id: Ie371d56df987c19a10017050ead02922a530f2ed Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300224Reviewed-by:
Tommy Steimel <steimel@chromium.org> Commit-Queue: Becca Hughes <beccahughes@chromium.org> Cr-Commit-Position: refs/heads/master@{#788721}
-
Annie Sullivan authored
Bug: 1104365 Change-Id: I20491cecfaf80abe4194f24005938c623911c7f9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298179 Commit-Queue: Annie Sullivan <sullivan@chromium.org> Reviewed-by:
Bryan McQuade <bmcquade@chromium.org> Cr-Commit-Position: refs/heads/master@{#788720}
-
Arthur Eubanks authored
It is implicitly on, but does not work when LIBCXX_ENABLE_SHARED and LIBCXX_ENABLE_STATIC are both turned off. See https://reviews.llvm.org/D82702. Bug: 1105597 Change-Id: Iaac9dba2a98fb8d097558ec9960ddd1bc55fda83 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2299468Reviewed-by:
Nico Weber <thakis@chromium.org> Commit-Queue: Arthur Eubanks <aeubanks@google.com> Cr-Commit-Position: refs/heads/master@{#788719}
-
Stephen McGruer authored
Bug: 1092520 Change-Id: Ifd801925303ffbf2694a9ba4a1f96a4e08cf058e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2299520Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Stephen McGruer <smcgruer@chromium.org> Cr-Commit-Position: refs/heads/master@{#788718}
-
Wei Li authored
Two small changes in the login bubble dialog example: 1) only show the labels after submit as showing them on the initial screen might confuse users; 2) change the input position to be closer to the label. Screenshots are in https://docs.google.com/document/d/1PZPJIipxBT0QfEHqeZtlfGq7e0z2Wo0v8x5CNVzEOmM/edit# Bug: none Change-Id: I879b682b7be5c5ffea31beabce911c83e91eaff4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2296626Reviewed-by:
Thomas Lukaszewicz <tluk@chromium.org> Commit-Queue: Wei Li <weili@chromium.org> Cr-Commit-Position: refs/heads/master@{#788717}
-
Leonard Grey authored
New number via consultation with PM and UX. Bug: 1098397 Change-Id: I9ddb3582974b199c8d820fc76026a064a21a4edc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300320Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Leonard Grey <lgrey@chromium.org> Cr-Commit-Position: refs/heads/master@{#788716}
-
Steven Bennetts authored
This is part of a larger effort to refactor callbacks in chromeos/network. The Get and Set Properties methods require small state machines which do not do well with separate success / error callbacks. This CL changes the API to use a single callback more sutible for a cleaner OnceCallback model. Bug: 1007660 Change-Id: I6b94f469147daa0dbfffe4fdef67d31e1af0f323 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2293258 Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Toni Baržić <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#788715}
-
John Abd-El-Malek authored
Bug: 1102743 Change-Id: I76c928fa620908482f1bf07c00fd429132f93ff0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2296822 Commit-Queue: John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#788714}
-
Dominic Farolino authored
R=sclittle@chromium.org Bug: N/A Change-Id: I3ea94a937ecc957389217a24bd4cc961a6d11c9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300500Reviewed-by:
Scott Little <sclittle@chromium.org> Commit-Queue: Dominic Farolino <dom@chromium.org> Cr-Commit-Position: refs/heads/master@{#788713}
-
Tommy Steimel authored
This CL adds the necessary deps to chrome/browser/share to pass `gn check`. chrome/browser/share depends on the ProfileManager in chrome/browser, so we allow circular dependencies. Bug: 1105857 Change-Id: Ic2aec390319e7e16d7d47d06bb1299555b3d6194 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300220Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Commit-Queue: Tommy Steimel <steimel@chromium.org> Cr-Commit-Position: refs/heads/master@{#788712}
-
Adlai Holler authored
This is part of a larger effort to have users specify the GrDirectContext when creating new derived images. See skbug.com/10466 for details. Change-Id: Ia3d78f0a7bf54798450e9f9a3c3a86bcdd1caf9e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2295982 Commit-Queue: Adlai Holler <adlai@google.com> Reviewed-by:
Peng Huang <penghuang@chromium.org> Reviewed-by:
Florin Malita <fmalita@chromium.org> Reviewed-by:
Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#788711}
-
Matt Menke authored
This enum is part of the NetworkService API, and files outside of the network service shouldn't need to transitively include a bunch of net/ classes to use it. This CL also converts it from an enum to an enum class. This CL is part of a chain of CLs that will reduce the 4000 build steps in content_browsertests currently depending on url_request.h to about 200. Bug: 1103784 Change-Id: I3077442ba745fd4f4db64f110b7f8df39d751d00 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2290929Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
David Van Cleve <davidvc@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#788710}
-
Peter Kasting authored
E.g. replace manual calculations with max(), replace multi-stage computations with single ones, pull variables out of loops, eliminate code that merely handles DCHECKs, use ternaries more No intended behavior change. Bug: none Change-Id: I15f797c78dcaba1681b245832d7fce828e9df3c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2296489 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Marian Fechete <marianfe@google.com> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Lambros Lambrou <lambroslambrou@chromium.org> Reviewed-by:
Yutaka Hirano <yhirano@chromium.org> Reviewed-by:
Ted Meyer <tmathmeyer@chromium.org> Cr-Commit-Position: refs/heads/master@{#788709}
-
Takumi Fujimoto authored
Calling Value::Find*() causes a crash if Value::is_dict() is false. Make sure to check is_dict() before calling Find*(). This is a speculative fix for a crash. Bug: 1105640 Change-Id: I6b01c4b2567a79288a6f636388bd70ef7c1a022b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298582Reviewed-by:
Brandon Tolsch <btolsch@chromium.org> Commit-Queue: Takumi Fujimoto <takumif@chromium.org> Cr-Commit-Position: refs/heads/master@{#788708}
-
Peter Kasting authored
* Improve comments * Use const and constexpr more * EXPECT -> static_assert where possible * kCamelCase for constant names * Spaces around operators * Prefer prefix operators * Initialize members in declarations * Use =default * ASSERT_TRUE -> ASSERT_GE,LT, etc. * No return after else Bug: none Change-Id: If2f609d5ec45b950a081eca25f7339f757bdd93a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2294024Reviewed-by:
François Doray <fdoray@chromium.org> Reviewed-by:
Maksim Orlovich <morlovich@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Reviewed-by:
Dan Sanders <sandersd@chromium.org> Reviewed-by:
Andrew Moylan <amoylan@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#788707}
-
behdad authored
- The number of used runs for updating representative perf tests is set to 50 (from 30) - The script will record the 5 percentile of the last recorded CPU_wall_time_ratio metric and adds that to the upper_limits. The change is using the 5 percentile instead of the 95 percentile because opposite to frame_times average or confidence interval, the higher the values of CPU_wall_time_ratio are better. Bug: chromium:1052361 Change-Id: I95b7cfb781d8ddc176c8b02eaf7670d03c86cf94 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2274097Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: Behdad Bakhshinategh <behdadb@chromium.org> Cr-Commit-Position: refs/heads/master@{#788706}
-
Andrew Comminos authored
Complete the test suite for all possible attribution types. Bug: 910421 Change-Id: Ieb17cc658ddf11d71df68f4a340e42b1c42d7480 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298540Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Andrew Comminos <acomminos@fb.com> Cr-Commit-Position: refs/heads/master@{#788705}
-
Sylvain Defresne authored
Xcode 11.4+ is required to build src/ios/chrome/app, so bump the version of Xcode used on WebRTC iOS bots to a compatible version. Bug: 1104769 Change-Id: I701cbc0db3e10e988f6c6287ff147dae70c70cb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2299346Reviewed-by:
Mirko Bonadei <mbonadei@chromium.org> Reviewed-by:
Garrett Beaty <gbeaty@chromium.org> Commit-Queue: Mirko Bonadei <mbonadei@chromium.org> Cr-Commit-Position: refs/heads/master@{#788704}
-
Leonid Baraz authored
Bug: b:157940996 Change-Id: I6d7698cabb878ca8f318f2e46acb2f6dd4dc39a8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2298484Reviewed-by:
Zach Trudo <zatrudo@google.com> Commit-Queue: Leonid Baraz <lbaraz@chromium.org> Cr-Commit-Position: refs/heads/master@{#788703}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/2a4147183191..d8d96d5f0af2 2020-07-15 jacktfranklin@chromium.org Ship new ElementsBreadcrumbs to production 2020-07-15 wolfi@chromium.org Use FrameManager for frames section in application panel 2020-07-15 tvanderlippe@chromium.org Move copy_lighthouse_locale_files to third_party/lighthouse 2020-07-15 tvanderlippe@chromium.org Move copy_wasm_deps to sdk/wasm_source_map/BUILD.gn 2020-07-15 tvanderlippe@chromium.org Move embedder-scripts to front_end/BUILD.gn 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:1093247,chromium:1101262 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I493eb47f07ded2676ab3f949bf3df79096dad6e9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300286Reviewed-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@{#788702}
-
Asanka Herath authored
Prevent memory use and minimize disruption when the study is inactive. R=pauljensen@chromium.org Bug: 973801 Change-Id: I81781e261a2323ea863c1d24c969adbf5fe726a9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2275080 Commit-Queue: Asanka Herath <asanka@chromium.org> Reviewed-by:
Caleb Raitto <caraitto@chromium.org> Cr-Commit-Position: refs/heads/master@{#788701}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/73b607f9e3b4..3bda66062b2e 2020-07-15 fmayer@google.com Explain tricky double conversion. If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:linux-perfetto-rel Bug: None Tbr: perfetto-bugs@google.com Change-Id: I2085c37c9e37b8e2f70170c4de3e914062cf9e87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2300284Reviewed-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@{#788700}
-
Ryan Harrison authored
Tint is an implementation of WGSL, the shading for WebGPU, that Dawn, our implementation of WebGPU, uses. Requires adding dawn_enable_wgsl=true to args.gn currently to use. BUG=1070645 Change-Id: I733cc23f3ca25c8943082564f277234d22a3662d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2248753 Auto-Submit: Ryan Harrison <rharrison@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Commit-Queue: Ryan Harrison <rharrison@chromium.org> Cr-Commit-Position: refs/heads/master@{#788699}
-
Saurabh Nijhara authored
This CL adds aria-label attribute to OOBE dialogs in update required screen to support accessibility. This is only applicable to ChromeOS. Bug: 1105191 Change-Id: Ie78fc988bd5b3249437e06af6c31542cc0f25cd9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2294800 Commit-Queue: Saurabh Nijhara <snijhara@google.com> Reviewed-by:
Roman Sorokin [CET] <rsorokin@chromium.org> Cr-Commit-Position: refs/heads/master@{#788698}
-
Francois Doray authored
TaskQueueImpl supported registering a callback that is invoked when a task becomes ready. This was only used by the obsolete agent interference histogram. Therefore, this CL removes support for this callback. Bug: 1019856, 984057 Change-Id: I838b88e13174eff5347de55646d22565b770339c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2297719 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Cr-Commit-Position: refs/heads/master@{#788697}
-
Bin Du authored
We collect precise events for atom family and big Intel cores newer than Haswell, and non-precise events for other x86_64 uarchs. Bug: 142679633 Change-Id: I915fbb3a03f5730b1ec445f8f08552a631a57c70 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2296819 Commit-Queue: Bin Du <dubin@google.com> Reviewed-by:
Gabriel Marin <gmx@chromium.org> Cr-Commit-Position: refs/heads/master@{#788696}
-