- 20 Aug, 2019 40 commits
-
-
Yun Liu authored
Each test method only generates ONE coverage(.exec) file, so that there is no need to pull the whole directory out every time. The benefit is if no coverage data generated for some reason, it will raise and catch the exception for debug, instead of pulling an empty "coverage/" directory out. Bug: 843307 Change-Id: I5509cf2c4a99036ca2409602108cce9477af8d2b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1742382Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Yun Liu <yliuyliu@google.com> Cr-Commit-Position: refs/heads/master@{#688384}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/5f152f07455c..52a6a40535b0 git log 5f152f07455c..52a6a40535b0 --date=short --no-merges --format='%ad %ae %s' 2019-08-19 liyuqian@google.com Add savelayer_with_backdrop GM to benchmark Created with: gclient setdep -r src/third_party/skia@52a6a40535b0 The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. 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 TBR=egdaniel@google.com Bug: None Change-Id: I7daf6afb7d28db59b3162e405f88c829f13e80fb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1758668Reviewed-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@{#688383}
-
Yuki Shiino authored
Bug: 839389 Change-Id: I32779e07a79d3fd59c00a1d313166eb39c2109c1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760582Reviewed-by:
Hitoshi Yoshida <peria@chromium.org> Commit-Queue: Yuki Shiino <yukishiino@chromium.org> Cr-Commit-Position: refs/heads/master@{#688382}
-
John Lee authored
The tab strip is touch device-only and tabs will be sized such that there is some indication that the tab strip is scrollable. This CL removes the visible scrollbar entirely but still allows the user to scroll. Bug: 989131 Change-Id: Ia12feba3d2ed866fb2f5f92bd2a267c4deb5f981 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761470Reviewed-by:
Hector Carmona <hcarmona@chromium.org> Commit-Queue: John Lee <johntlee@chromium.org> Cr-Commit-Position: refs/heads/master@{#688381}
-
Daniel Murphy authored
Change-Id: Ica9b2a128bad8d97983449ba560bfee5bee9e806 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1758713 Commit-Queue: Daniel Murphy <dmurph@chromium.org> Reviewed-by:
Chase Phillips <cmp@chromium.org> Cr-Commit-Position: refs/heads/master@{#688380}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/1f288d915d10..939b6b1f1c56 git log 1f288d915d10..939b6b1f1c56 --date=short --no-merges --format='%ad %ae %s' 2019-08-19 dberris@chromium.org PinpointScheduler: Backwards compatibility for find_isolate Created with: gclient setdep -r src/third_party/catapult@939b6b1f1c56 The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. 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_optional_gpu_tests_rel TBR=zhanliang@google.com Bug: chromium:988912 Change-Id: I5357f5c953b8b5799837be2dd5b9c03ef9ef71c7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760686Reviewed-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@{#688379}
-
Johannes Henkel authored
And fix the fallout. BUG=991325 Change-Id: I4ab49b139ec38b8c8f4557fd0d5c004e454fa419 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1750045 Commit-Queue: Johannes Henkel <johannes@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#688378}
-
Ce Chen authored
The reason why we should apply demotion before dedup, is dedup will prefer suggestions with higher relevance (which might be on device, and remove its dup with lower relevance, which might be server side). Imagine this example: we have on device suggestions (and its relevance): sugg1(1100), sugg2(1099), sugg3(1098) and server suggestions sugg2(600), sugg4(599). Now the dedup will prefer sugg2(1099) and remove server side sugg2(600). Then after demotion, the final result list will be sugg4(599), sugg1(598), sugg2(597, which is from on device), sugg3(596), where the correct list should be sugg2(600, from server side), sugg4(599), sugg1(598), sugg3(597). Applying demotion first will ensure no on device suggestion has a higher relevance such that the example above will never happen. Bug: 925072 Change-Id: Ic1b8a2de1e602802b59d93e1971387f0ae7e67ca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760685Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: Ce Chen <cch@chromium.org> Cr-Commit-Position: refs/heads/master@{#688377}
-
Nick Harper authored
TBR=rsleevi@chromium.org Change-Id: Idea4138b8a18429a68a5c64e48da9051ebddc055 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760864 Commit-Queue: Nick Harper <nharper@chromium.org> Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Nick Harper <nharper@chromium.org> Cr-Commit-Position: refs/heads/master@{#688376}
-
Maggie Chen authored
Bug: 949839 Change-Id: I5939069144719c501209af3cda3b7693f61f8866 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1682315 Commit-Queue: Maggie Chen <magchen@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Zhenyao Mo <zmo@chromium.org> Cr-Commit-Position: refs/heads/master@{#688375}
-
Kent Tamura authored
Now IDR_AUDIO_SPATIALIZATION_T000_P000 is not defined on any platforms. This CL has no behavior changes. Bug: 983396 Change-Id: Ibb62eb16c949810ce7124f96db937d7072a8538a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760577Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#688374}
-
Tommy Steimel authored
This CL updates the GMC toolbar button's tooltip string from "Global Media Controls" to "Control your music, videos, and more" Bug: 991271 Change-Id: Ie2554ac6102421e7f12f80b2dc64c16f9eeb4f2a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1758218Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Commit-Queue: Tommy Steimel <steimel@chromium.org> Cr-Commit-Position: refs/heads/master@{#688373}
-
Bill Budge authored
- Adds a time histogram to measure how long deserializing a compiled Wasm module from the code cache takes. Bug: chromium:992991 Change-Id: Ia6b87f73f893350a50da554a25e2e36a55bb11df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761257Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Commit-Queue: Bill Budge <bbudge@chromium.org> Cr-Commit-Position: refs/heads/master@{#688372}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/1c3b93db4826..f2e04cc7654d Created with: gclient setdep -r src-internal@f2e04cc7654d The AutoRoll server is located here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=jbudorick@google.com Bug: chromium:None,chromium:None,chromium:None Change-Id: I3097fce9c2997fa96484d9b9ed06f0480376bcbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761425Reviewed-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@{#688371}
-
Martin Kreichgauer authored
currently DCHECKs that the Windows authenticator only fails with (kKeyAlreadyRegistered is possible too, e.g.). Remove the DCHECK entirely because even if we got a correct list of errors now, it's prone to break with future changes to the authenticator or Windows, while not providing any obvious value. ChromeAuthenticatorRequestDelegate: :DoesBlockRequestOnFailure() InterestingFailureReason: :kUserConsentDenied. This is not correct Change-Id: Ic1a0b377480262585444b93c7edf5487e5e9def8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1759288Reviewed-by:
Adam Langley <agl@chromium.org> Commit-Queue: Martin Kreichgauer <martinkr@chromium.org> Cr-Commit-Position: refs/heads/master@{#688370}
-
Gayane Petrosyan authored
Bug: None Change-Id: I5a14fdd40764b3aeaf32f6080d942bc1b1466a6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761227 Commit-Queue: Gayane Petrosyan <gayane@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#688369}
-
Gayane Petrosyan authored
Fix the line height to take exactly as much space as the specified font. Otherwise, if it takes more space then vertical alignment doesn't work as button doesn't have enough height. Bug: 990956 Change-Id: I45746cc8cf6863acb58880b83fad3f41feba7abb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761219Reviewed-by:
Kristi Park <kristipark@chromium.org> Commit-Queue: Gayane Petrosyan <gayane@chromium.org> Cr-Commit-Position: refs/heads/master@{#688368}
-
Gayane Petrosyan authored
Previously unused themes were uninstalled when no infobars were present. But now when themes can be reverted ChromeColorsService, counting infobars is not sufficient for preventing uninstall of necessary themes. This CL adds ThemeReinstaller class that will update the of number of existing reinstallers and will call RemoveUnusedThemes when there are no reinstallers left. This CL also removes ignore_infobars param from RemoveUnusedThemes as it is not relevant anymore. Bug: 985001, 991715 Change-Id: Ia3905ee2d8c5fb238c8d6a380d17ed9d3018e2a1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757067Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Peter Kotwicz <pkotwicz@chromium.org> Commit-Queue: Gayane Petrosyan <gayane@chromium.org> Cr-Commit-Position: refs/heads/master@{#688367}
-
Peter Boström authored
require-corp.https.html version wasn't enough to disable. Sample failure: https://ci.chromium.org/p/chromium/builders/ci/Linux%20Tests%20%28dbg%29%281%29/82507 TBR=tnagel@chromium.org Bug: chromium:626703, chromium:995129 Change-Id: Ic500ae18dab4d54b436bc0540af304e8406f5138 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761516Reviewed-by:
Peter Boström <pbos@chromium.org> Commit-Queue: Peter Boström <pbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#688366}
-
Gyuyoung Kim authored
This CL converts |client_biding_| from mojo::Binding to mojo::Receiver. Then, the name is also changed to |client_receiver_|. Besides, this CL converts the type of |sensor_| to mojo::Remote as well. Bug: 955171 Change-Id: Ic7b14f718fe1229fb19a6f1fa68618f8707d2e6e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757953Reviewed-by:
Ken Rockot <rockot@google.com> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#688365}
-
John Z Wu authored
This is so it can be reused in other unittests. Change-Id: I752a5929e521d9cc24519a9d2d3a5a73bb0f6aef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757069Reviewed-by:
Jared Saul <jsaul@google.com> Reviewed-by:
Moe Ahmadi <mahmadi@chromium.org> Commit-Queue: John Wu <jzw@chromium.org> Cr-Commit-Position: refs/heads/master@{#688364}
-
chromium-autoroll authored
https://pdfium.googlesource.com/pdfium.git/+log/d41929adaddf..451ed2dbac83 git log d41929adaddf..451ed2dbac83 --date=short --no-merges --format='%ad %ae %s' 2019-08-19 tsepez@chromium.org Move some CPDFXFA_Widget specific methods out of CPDFSDK_Annot 2019-08-19 thestig@chromium.org Remove an impossible condition in CPDF_CMapParser::ParseWord(). Created with: gclient setdep -r src/third_party/pdfium@451ed2dbac83 The AutoRoll server is located here: https://autoroll.skia.org/r/pdfium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=pdfium-deps-rolls@chromium.org Bug: None Change-Id: Ie1501e09262376ef751550c598a9cc88594c2c4f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761495Reviewed-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@{#688363}
-
Sinan Sahin authored
Push back the expiry milestones of enable-android-night-mode, enable-android-web-contents-dark-mode, enable-revamped-context-menu and force-enable-home-page-button as the experiments are still ongoing. Bug: 995468, 995470 Change-Id: Idbe75661baf22d79d84c0ade9e07e9d025c19601 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761160Reviewed-by:
Theresa <twellington@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Sinan Sahin <sinansahin@google.com> Cr-Commit-Position: refs/heads/master@{#688362}
-
Erik Chen authored
Change-Id: I64fc3fb04dd2e3e3f827f2c0a72917471ac0a403 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761329Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Erik Chen <erikchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#688361}
-
Malay Keshav authored
If the device scale factor of a layer changes while it is undergoing a transform animation, it may result in a crash. This is because during a device scale factor change operation, all transform animations are cancelled leading to a call being made to animation observers of the transform animation. The observers can then delete the layer or some other layer in the hierarchical traversal. This can result in a seg fault crash. Bug: 987300 Test: Added unit test for the crash. Change-Id: I8842e4b39daf59e4068497a3d662fda7f921b729 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1757126Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Malay Keshav <malaykeshav@chromium.org> Cr-Commit-Position: refs/heads/master@{#688360}
-
Chromium WPT Sync authored
Using wpt-import in Chromium a68d66fc. 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 NOAUTOREVERT=true TBR=raphael.kubo.da.costa No-Export: true Change-Id: I045f55a4e66cb085d1fda96107b84fd5030b71f4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760419Reviewed-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@{#688359}
-
Chase Phillips authored
This replays the cache solution from CacheStorage implemented in https://crrev.com/c/1518592. Bug: 941118 Change-Id: Id3f41cb2abed2efe8ced2525b0122965b44e22e3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1759321Reviewed-by:
Lei Zhang <thestig@chromium.org> Reviewed-by:
Ben Kelly <wanderview@chromium.org> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Commit-Queue: Chase Phillips <cmp@chromium.org> Cr-Commit-Position: refs/heads/master@{#688358}
-
Olivier Li authored
Bug: 969139 Change-Id: I35d551b6bdb41b4e6bd7689120c21d9d683ad72f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1733747 Commit-Queue: Oliver Li <olivierli@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Reviewed-by:
Joe Mason <joenotcharles@google.com> Cr-Commit-Position: refs/heads/master@{#688357}
-
Darwin Huang authored
No intended logic change. Change-Id: I826f5c4b49202a6ca7aa3457855b7e542193a481 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1759141 Commit-Queue: Jarryd Goodman <jarrydg@chromium.org> Auto-Submit: Darwin Huang <huangdarwin@chromium.org> Reviewed-by:
Jarryd Goodman <jarrydg@chromium.org> Cr-Commit-Position: refs/heads/master@{#688356}
-
Kristi Park authored
Position elements with flexbox instead of inline-block. This allows us to remove the "font-size: 0" hack that fixed the extra space between inline-block elements. Change-Id: Ie3b6f02281795e60806259a00b2ee948df3b0959 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1725334 Commit-Queue: Kristi Park <kristipark@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#688355}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/0d6f77537a4c..5f152f07455c git log 0d6f77537a4c..5f152f07455c --date=short --no-merges --format='%ad %ae %s' 2019-08-19 reed@google.com add path-edger; lightweight Iter for edges 2019-08-19 herb@google.com Use bulk API for bitmap glyph drawing Created with: gclient setdep -r src/third_party/skia@5f152f07455c The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. 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 TBR=egdaniel@google.com Bug: None Change-Id: I1c7ba058ac45f086e66edcf72eab779cdb06487f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761417Reviewed-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@{#688354}
-
Ken MacKay authored
Now that thread annotations are available, we should use them. Change-Id: I06a516f76ebffbd56ec3c7d68666f34c6012da8b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1759899 Commit-Queue: Kenneth MacKay <kmackay@chromium.org> Reviewed-by:
Yuchen Liu <yucliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#688353}
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/ee3de1e1f3da..d8cdcea0eeb1 git log ee3de1e1f3da..d8cdcea0eeb1 --date=short --no-merges --format='%ad %ae %s' 2019-08-19 enga@chromium.org Validate the RenderBundle debug groups must be well nested Created with: gclient setdep -r src/third_party/dawn@d8cdcea0eeb1 The AutoRoll server is located here: https://autoroll.skia.org/r/dawn-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:dawn-linux-x64-deps-rel;luci.chromium.try:dawn-mac-x64-deps-rel;luci.chromium.try:dawn-win10-x64-deps-rel;luci.chromium.try:dawn-win10-x86-deps-rel TBR=cwallez@google.com Bug: None Change-Id: I95adbca91b43b5f6c4b12070d83bc59e31bc57e1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761420Reviewed-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@{#688352}
-
Jinsuk Kim authored
https://crrev.com/c/1703624 moved the initialization of NavigationHandler in SwipeRefreshHandler from |start| to initWebContents/onViewAttached. It now is possible that start/pull/release from content layer see nulled-out NavigationHandler if the gesture navigation feature is disabled. Null checks are added to prevent the reported crash. Bug: 995204 Change-Id: If5ad85d71a303e203c8f6fd4df00f603eb77261c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1760831Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Cr-Commit-Position: refs/heads/master@{#688351}
-
Michael Crouse authored
This change adds a dictionary pref to record the hosts that a successful hints fetch request was made, regardless if a hint was returned in the response. This will be used to determine the client-side coverage for the hosts navigated to be the client by the TopHostProvider and the HintsFetcher. The next change will add a UMA metric to record whether the host for each navigation is in the dictionary pref. Bug: 994931 Change-Id: I6c759ac568b04dbc0bb4ea90a307c10f859cd55f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1759209 Commit-Queue: Michael Crouse <mcrouse@chromium.org> Reviewed-by:
Robert Ogden <robertogden@chromium.org> Cr-Commit-Position: refs/heads/master@{#688350}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/35b0708074d1..5817e8e9b288 git log 35b0708074d1..5817e8e9b288 --date=short --no-merges --format='%ad %ae %s' 2019-08-19 ssid@google.com Merge "Add chrome version code to metadata" Created with: gclient setdep -r src/third_party/perfetto@5817e8e9b288 The AutoRoll server is located here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=perfetto-bugs@google.com Bug: None Change-Id: Iab4425135729a4807541115e6d8135b184dc542e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761418Reviewed-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@{#688349}
-
Ramya Nagarajan authored
Bug: 986504 Change-Id: I3a7f449038173d97d413eabe214886e0b213f2c3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761065Reviewed-by:
Jesse Doherty <jwd@chromium.org> Commit-Queue: Ramya Nagarajan <ramyan@chromium.org> Cr-Commit-Position: refs/heads/master@{#688348}
-
Daniel Cheng authored
This reverts commit 3c1f7d52. Reason for revert: causing a number of non-trivial perf regressions Bug: 994174, 994630 Original change's description: > Refactor VectorBuffer to use CheckedIterators. > > Currently VectorBuffer allows the access of buffer[size]. This is > because callers are using buffer[size] to get buffer.end(). In order to > avoid this, use CheckedRandomAccessIterators in VectorBuffer. This > required creating iterator versions for the DestructRange and MoveRange > functions. > > CheckedIterator's behavior now depends on the enable_checked_iterators > buildflag: when true, CheckedIterator will CHECK on spatial safety > violations; when false, CheckedIterator will merely DCHECK. This is > temporary, so that binary size regressions on Android can be studied > and explained: the eventual goal is to enable this universally and > remove the buildflag. > > BUG=chromium:817982 > > Change-Id: I2037bdb542c4442011fc9ebffdc50e50ccfafa7c > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1674746 > Reviewed-by: Wez <wez@chromium.org> > Commit-Queue: Daniel Cheng <dcheng@chromium.org> > Cr-Commit-Position: refs/heads/master@{#685387} TBR=palmer@chromium.org,dcheng@chromium.org,wez@chromium.org,gabimelchior@google.com # Not skipping CQ checks because original CL landed > 1 day ago. Bug: chromium:817982 Change-Id: I35d48a94d0f36b0c4cbd5cad6e4f5b12dc19afb9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761338Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#688347}
-
James Cook authored
OS settings uses G Grey 700, weight 500, different spacing, and no border under the title. http://screen/61xziJEyQqx Bug: 994790 Change-Id: I71346581fcfb66da3a773f89c664544393472625 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761066 Commit-Queue: James Cook <jamescook@chromium.org> Reviewed-by:
Hector Carmona <hcarmona@chromium.org> Cr-Commit-Position: refs/heads/master@{#688346}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/199e517c52c6..caaa058f628b git log 199e517c52c6..caaa058f628b --date=short --no-merges --format='%ad %ae %s' 2019-08-19 dhanyaganesh@chromium.org lib/git: Print Cmd everytime we push to branch Created with: gclient setdep -r src/third_party/chromite@caaa058f628b The AutoRoll server is located here: https://autoroll.skia.org/r/chromite-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:chromeos-kevin-rel TBR=chrome-os-gardeners@google.com Bug: None Change-Id: I9590d2833c34dfc66f13636c6886dddb07d4c770 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761416Reviewed-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@{#688345}
-