- 14 Oct, 2020 40 commits
-
-
Zach Trudo authored
APP_INSTALL_EVENT will roll into UPLOAD_EVENT. No need for the division. Bug: chromium:1078512 Change-Id: I2ce795e59dbf3a255b89dd4a4b3ae5172f78ede5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2436328 Commit-Queue: Zach Trudo <zatrudo@google.com> Reviewed-by:
Leonid Baraz <lbaraz@chromium.org> Cr-Commit-Position: refs/heads/master@{#817145}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/f654dd2f225c..fb3d4294864a 2020-10-14 jleconte@google.com Fix 'Unknown git hash' when repository is not chromium. 2020-10-14 jleconte@google.com Fix DescribeHandler request for test_suite=='webrtc_perf_tests'. 2020-10-14 jleconte@google.com [pinpoint] Support Monorail projects in UI 2020-10-14 dberris@chromium.org pinpoint: Isolate Pinpoint-Multiple-MissingValues 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 wenbinzhang@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:1119962,chromium:1133649 Tbr: wenbinzhang@google.com Change-Id: Icf9705f548846c0fbfa773ce3ebf0055847c91d5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2471781Reviewed-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@{#817144}
-
Brian Ho authored
Initiating a CopyOutputRequest for HDR content (e.g. cros overview mode while an HDR video is playing) results in invalid output (and a DCHECK failure [1]) because we can't convert a PIECEWISE_HDR gfx::ColorSpace to a skcms_TransferFunction [2]. This CL remedies this issue by transforming unsupported color spaces like PIECEWISE_HDR into sRGB inside GLRendererCopier and then returning a transformed sRGB CopyOutputResult instead. [1] https://source.chromium.org/chromium/chromium/src/+/master:components/viz/common/frame_sinks/copy_output_result.cc;l=118;drc=7a942548e0af7397f79bf07b4ca03ade10d04019 [2] https://source.chromium.org/chromium/chromium/src/+/master:components/viz/service/display/gl_renderer_copier.cc;l=549;drc=3e77a4cd58bab1daff8572b17af776ead811c8b8 Bug: 1136876 Change-Id: I796025f0dc3575849631fb37b66547172d47bc1d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2464100 Commit-Queue: Brian Ho <hob@chromium.org> Reviewed-by:
ccameron <ccameron@chromium.org> Cr-Commit-Position: refs/heads/master@{#817143}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC cr-fuchsia+bot@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 Cq-Include-Trybots: luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast Tbr: cr-fuchsia+bot@chromium.org Change-Id: Ib8c3d1a82847d27e04fa61b3825717136a778f9b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472697Reviewed-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@{#817142}
-
Greg Daniel authored
Change-Id: I1da7035e84173f5e9d8021ec3d2639f2ba96bf89 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469261Reviewed-by:
Peng Huang <penghuang@chromium.org> Commit-Queue: Greg Daniel <egdaniel@google.com> Cr-Commit-Position: refs/heads/master@{#817141}
-
Brian Ho authored
When fulfulling RGBA_BITMAP copy requests, SkiaRenderer does not pass a color space to asyncRescaleAndReadPixels which according to the Skia documentation [1], means that Skia will default to a sRGB conversion. However, when the color space isn't sRGB (e.g. HDR videos), the non-sRGB color space is still passed via ReadPixelsContext to initialize the SkBitmap [2]. Thus, even though the image was converted to sRGB in the read, the SkBitmap reports that it is in a non-sRGB color space. This CL fixes this issue by explicitly providing a SkColorSpace to asyncRescaleAndReadPixels via a conversion from gfx::ColorSpace. Additionally, if the gfx::ColorSpace cannot be converted to an SkColorSpace (e.g. PIECEWISE_HDR), fallback to sRGB. This fallback fixes a null pointer dereference in Chrome OS [3], and for more context, see the CL for a similar fix in GLRenderer [4]. [1] https://source.chromium.org/chromium/chromium/src/+/master:third_party/skia/include/core/SkImageInfo.h;l=296;drc=a450ab794839b63f9c2ba982f738945f90e9fee2 [2] https://source.chromium.org/chromium/chromium/src/+/master:components/viz/service/display_embedder/skia_output_surface_impl_on_gpu.cc;l=214;drc=a450ab794839b63f9c2ba982f738945f90e9fee2 [3] https://source.chromium.org/chromium/chromium/src/+/master:components/viz/service/frame_sinks/video_capture/frame_sink_video_capturer_impl.cc;l=753;drc=e0789c0a2326279a3bac70012ca3edd3e46b5aa1 [4] https://chromium-review.googlesource.com/c/chromium/src/+/2464100 Bug: 1138518 Change-Id: I4ccd5b6e9af75caff917fa851281eae7ee8f10cc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472437Reviewed-by:
Jonathan Backer <backer@chromium.org> Commit-Queue: Brian Ho <hob@chromium.org> Cr-Commit-Position: refs/heads/master@{#817140}
-
Abigail Klein authored
style preferences and Live Caption, on one settings subpage. This CL makes some adjustments to the captions subpage in settings according to the latest UX spec (https://docs.google.com/presentation/d/1YO10r3-ybP-L9uTNCClAQO9Er0gjwWMOLVKY98u59qU/edit#slide=id.g8ea378aef4_0_0): - Rename some strings - Change some indentations and spacing - Add the Live Caption toggle The Live Caption toggle is removed from the a11y page for operating systems that show the captions subpage (ChromeOS, Linux, some versions of Windows). For operating systems that do not show the captions subpage (MacOS, some versions of Windows) the Live Caption toggle is still shown on the a11y page. Bug: 1055150, 1111002 Change-Id: If4cb2b236ef0561a9cb75d7d921ede9fccf401af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2468756Reviewed-by:
Evan Liu <evliu@google.com> Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Abigail Klein <abigailbklein@google.com> Cr-Commit-Position: refs/heads/master@{#817139}
-
Lachlan Ford authored
Implemented generic-hand-select using the MSFT hand interaction extension. Change-Id: I25595dfcf05fd0e23fb7ee9484c333321746fa0e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469836Reviewed-by:
Alexander Cooper <alcooper@chromium.org> Commit-Queue: Lachlan Ford <laford@microsoft.com> Cr-Commit-Position: refs/heads/master@{#817138}
-
Regan Hsu authored
Bug: 1106937 Change-Id: I2f660e20ecc0490ed4fb87acaf3b047b03e72fe1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2462225Reviewed-by:
Weilun Shi <sweilun@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Emily Stark <estark@chromium.org> Commit-Queue: Regan Hsu <hsuregan@chromium.org> Cr-Commit-Position: refs/heads/master@{#817137}
-
Sebastien Lalancette authored
The ActivityServiceCoordinator used to get the popover's sourceRect from the sourceView's bounds. Since Shared Highlight requires placing the popover at some location inside a given UIView, we had to decouple the two properties. Bug: 1136043 Change-Id: Ica3294313f39c32c0edef0bd4bb2aa9443c0e1fc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2462244 Commit-Queue: Sebastien Lalancette <seblalancette@chromium.org> Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#817136}
-
Xing Liu authored
Cannot repro the ASAN crash on linux, this CL re-enable this test. Bug: 838403 Change-Id: Id936de540668cc230d5ccf2fdba3f61bdcbf0ec0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2463456Reviewed-by:
David Trainor <dtrainor@chromium.org> Commit-Queue: Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#817135}
-
Sebastien Lalancette authored
Hook-up the |shareLinkToText| method in LinkToTextMediator to a new command which will be handled in the BrowserCoordinator. The latter will make use of its SharingCoordinator to handle presenting the right sharing scenario. Bug: 1136043 Change-Id: I95ae7bdf5d5cee9c1538d43698753631f505c59e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2456288 Commit-Queue: Sebastien Lalancette <seblalancette@chromium.org> Reviewed-by:
Mark Cogan <marq@chromium.org> Reviewed-by:
Weilun Shi <sweilun@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
sebsg <sebsg@chromium.org> Cr-Commit-Position: refs/heads/master@{#817134}
-
Mike Wasserman authored
See https://crbug.com/1138540 TBR=lukasza@chromium.org Bug: 1138540 Change-Id: I9c4aed146fce8642bb98e63aa8dd4b7c55b668cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472580Reviewed-by:
Michael Wasserman <msw@chromium.org> Commit-Queue: Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#817133}
-
rbpotter authored
Bug: 1136706 Change-Id: I3e713ae638d14b9d0d3a9af2357bd7147217d326 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2467580 Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Reviewed-by:
dpapad <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#817132}
-
Weblayer Skew Tests Version Updates authored
Skew tests are being added for the following versions: 1, 86.0.4240.75 TBR=estaab@chromium.org Bug: 1041619 Change-Id: I8da60dd2875d416da905cb7f8c64546c0c2f384c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472259 Commit-Queue: Rakib Hasan <rmhasan@google.com> Reviewed-by:
Rakib Hasan <rmhasan@google.com> Cr-Commit-Position: refs/heads/master@{#817131}
-
Nate Fischer authored
No change to logic. This moves WebView's variations code into separate folders with distinct OWNERS files, updates BUILD rules, and applies automatic code formatting from git-cl format. Test: autoninja -C out/Default system_webview_apk Test: run_webview_instrumentation_test_apk -f *Variations* Test: gn check out/Default android_webview/browser/variations:variations Test: gn check out/Default android_webview/browser:browser Change-Id: If405f2f840d37861d38f8d5b221ed5f2bc36de69 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469356Reviewed-by:
Richard Coles <torne@chromium.org> Reviewed-by:
Changwan Ryu <changwan@chromium.org> Commit-Queue: Nate Fischer <ntfschr@chromium.org> Cr-Commit-Position: refs/heads/master@{#817130}
-
Daniel Libby authored
Starting with the crashers, which are more straightforward as obvious defects. I haven't had a chance to look at all of these yet, but there are a few different bugs causing issues. This is the first in a series of CLs to get the bot green, at which point we'll start whittling away at the failures. Bug: 1138028 Change-Id: I4b10e3764fde283d548a840b99e045cd44e6ad4e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469447Reviewed-by:
Aaron Leventhal <aleventhal@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Daniel Libby <dlibby@microsoft.com> Cr-Commit-Position: refs/heads/master@{#817129}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/1410c33130bc..ca4153fa8b09 2020-10-14 taylori@google.com Roll trace processor 2020-10-14 treehugger-gerrit@google.com Merge "Add a new proto for ChromeRendererSchedulerState" 2020-10-14 simonmacm@google.com Merge "Update ugly suspend-resume heuristic for newer kernels." 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: I444e2f2a5bf2eb201acff7546060db8760cfcbd1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2471777Reviewed-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@{#817128}
-
Kramer Ge authored
Some tests failed due to changed expecation tags. no-use-skia-dawn means no-skia-renderer or gl-skia-renderer or vulkan-skia-renderer. Referring to crrev.com/c/2462222 Bug: 1138478 Change-Id: I3cfcc4385695e69252f521393f5407a8c0c84fc4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2471818Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Kramer Ge <fangzhoug@chromium.org> Cr-Commit-Position: refs/heads/master@{#817127}
-
Edward Lesmes authored
Generate DIR_METADATA files and remove metadata from OWNERS files for //ios/web. R=eugenebut@chromium.org Bug: 1113033 Change-Id: Ic701aa0a0f4a4209317aaf3ab1fcfd7bbb06b8de Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472498 Commit-Queue: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Eugene But <eugenebut@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Auto-Submit: Edward Lesmes <ehmaldonado@chromium.org> Cr-Commit-Position: refs/heads/master@{#817126}
-
Ken Rockot authored
In preparation for the experiment going to 100% on stable, this enables OOP Storage Service by default on ToT. Bug: 994911 Change-Id: I235ff43a24d0bf3449816936fe7545742c386a01 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2463965 Commit-Queue: Ken Rockot <rockot@google.com> Reviewed-by:
Charlie Reis <creis@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#817125}
-
Mustafa Emre Acer authored
Bug: 400380 Change-Id: I8abd27ae269bd0040f12c038a14223c5989a43f9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2460875Reviewed-by:
Emily Stark <estark@chromium.org> Reviewed-by:
Chris Thompson <cthomp@chromium.org> Commit-Queue: Mustafa Emre Acer <meacer@chromium.org> Cr-Commit-Position: refs/heads/master@{#817124}
-
Mike Wasserman authored
See https://crbug.com/945193#c13 TBR=aboxhall@chromium.org Bug: 945193 Change-Id: Ia0db3f40992a95707f38170fb5f9823305c73b3d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472158Reviewed-by:
Michael Wasserman <msw@chromium.org> Commit-Queue: Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#817123}
-
Xianzhu Wang authored
Also do compositing update when we need compositing update when not compositing, to clear the stale GraphicsLayers. This fixes crash when SetAcceleratedCompositingEnabled(false) is called after the frame is composited. Not sure if this happens in real world but this fixes clusterfuzz crashes. Bug: 1137609, 1137650 Change-Id: I059876725758c95490644eeebae7e0c94d5caa65 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469362Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#817122}
-
Prashant Nevase authored
This patch modifies watchlists to include files with dark_mode anywhere in the filename and to include dark_mode files from cc/*. Bug: None Change-Id: I99ac814e4e79bd1a4ad1cadf380d20c677cfae85 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472677Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Prashant Nevase <prashant.n@samsung.com> Cr-Commit-Position: refs/heads/master@{#817121}
-
Fredrik Söderqvist authored
The kPaintInvalidation flag performs both paint invalidation paint property invalidation and clip-path cache invalidation. Split out the two latter so that they can be used in a more targeted way and avoid unnecessarily "wide" invalidations. For example we don't need to invalidate neither the paint properties nor the clip-path cache when a paint server changes. Take this opportunity to change the invalidation flags for masks, clips and filters to not invalidate bounds and trigger layout since they should no longer have any effect on a clients bounds (and thus also don't need to trigger a layout). Add an additional kFilterCacheInvalidation flag for the invalidation of a filter, and make that invalidation conditional. Bug: 1028061, 1028063 Change-Id: If96237ec2b5f7a08fd41fb51e1eb3f245b809b63 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2467997Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#817120}
-
Morten Stenshorne authored
I'm working on getting rid of as many renderer/core/*/BUILD.gn files as possible, and this one was getting in the way. Bug: 800764 Change-Id: Ie29c2e750aec9459cb17c9aa2da32219e03d3068 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2470659Reviewed-by:
Mason Freed <masonfreed@chromium.org> Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#817119}
-
Wez authored
Temporarily allow the default permissions granted to each Frame to be configured by passing a wildcard origin to SetPermissionState(). Bug: b/170198665, 1136994 Change-Id: I653622a5bbe8d8f7d08bc4f1c0fa6da94dc207cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2452633 Commit-Queue: Wez <wez@chromium.org> Reviewed-by:
David Dorwin <ddorwin@chromium.org> Auto-Submit: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#817118}
-
Bartek Nowierski authored
Currently all metadata is stored in PartitionPage, which is confusing because the most commonly used metadata is related to slot spans, and is stored only in the PartitionPage object that corresponds to the first partition page of the slot span. This CL introduces SlotSpanMetadata to clarify that confusion. Change-Id: Id8873dba1c9e3018a8643f4f9c93e694f2edb9c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2466007 Commit-Queue: Bartek Nowierski <bartekn@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Anton Bikineev <bikineev@chromium.org> Reviewed-by:
Benoit L <lizeb@chromium.org> Cr-Commit-Position: refs/heads/master@{#817117}
-
Steven Bingler authored
API_OWNERS LGTM not required: https://groups.google.com/a/chromium.org/g/blink-dev/c/qB7DKqxkiaA/m/EjiOUq5HAAAJ Received launch approval: crbug.com/1126175 Bug: 1030938 Change-Id: Ib35895ded9edcd382611b432a5d711cfe3724e2b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2468920 Auto-Submit: Steven Bingler <bingler@chromium.org> Commit-Queue: John Abd-El-Malek <jam@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#817116}
-
Scott Violet authored
It's not used, this is just support for the property. I put the property at the end of CSSSampleId as it will not have any usage at this point. BUG=1087667 TEST=none Change-Id: Ib467fa1658464d17b8813ffaba18e9c92b5e7e42 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2464024 Commit-Queue: Scott Violet <sky@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#817115}
-
chromium-autoroll authored
Roll Chrome Win64 PGO profile from chrome-win64-master-1602644333-c5d02301d4a6428e8ec60219d0e73c3fd904c678.profdata to chrome-win64-master-1602665973-82a3b15c2fe4da417cf5b287fae1d2a3020f8e39.profdata If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/pgo-win64-chromium Please CC pgo-profile-sheriffs@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:win64-chrome Tbr: pgo-profile-sheriffs@google.com Change-Id: I38008b2ea100421267b3d271dcbc7637dda8a93f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2470741Reviewed-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@{#817114}
-
spdonghao authored
Bug: 1092642 Change-Id: Ie13c405ffc7b730b61ced2cb5ff3e61d3d5c33c0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2468356 Commit-Queue: Hao Dong <spdonghao@chromium.org> Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Cr-Commit-Position: refs/heads/master@{#817113}
-
Tommy Li authored
Updates the Flash deprecation infobar message to match the placeholder: Adobe Flash Player is no longer supported Bug: 1069833 Change-Id: Ia34c079c52bcb24ea006fda8540de7c3dc7774eb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472177Reviewed-by:
Joshua Pawlicki <waffles@chromium.org> Commit-Queue: Tommy Li <tommycli@chromium.org> Cr-Commit-Position: refs/heads/master@{#817112}
-
Edward Lesmes authored
Add Generate DIR_METADATA files and remove metadata from OWNERS files for //net. R=jochen@chromium.org, rsleevi@chromium.org Bug: 1113033 Change-Id: I6173a164f2ec855d83ca71b545ee0d71bffa0145 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2454407Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Eric Roman <eroman@chromium.org> Commit-Queue: Ryan Sleevi <rsleevi@chromium.org> Auto-Submit: Edward Lesmes <ehmaldonado@chromium.org> Cr-Commit-Position: refs/heads/master@{#817111}
-
Nico Weber authored
This test needs otool, and otool needs 10.14+ to run after the recent Xcode bump. We still run the test elsewhere, so not running it on the older bots seems fine -- the test isn't very OS-version-dependent. Bug: 1138050 Change-Id: I37c085fcf5c2850b42a21792fdcb28c9930005a5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2471798 Commit-Queue: Nico Weber <thakis@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Auto-Submit: Nico Weber <thakis@chromium.org> Reviewed-by:
Mark Mentovai <mark@chromium.org> Cr-Commit-Position: refs/heads/master@{#817110}
-
Anupam Snigdha authored
This reverts commit 5d66d264. TBR=yukawa@chromium.org,siliu@microsoft.com Bug: 1137267 Change-Id: Iba8a3cb59a12ddd4310849ee1cf877cb7ea8a019 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2471881 Commit-Queue: Anupam Snigdha <snianu@microsoft.com> Reviewed-by:
Anupam Snigdha <snianu@microsoft.com> Cr-Commit-Position: refs/heads/master@{#817109}
-
Edward Lesmes authored
Generate DIR_METADATA files and remove metadata from OWNERS files for //ios/web_view. R=jzw@chromium.org Bug: 1113033 Change-Id: I3c518ead1448caeb41a86814b87b06d18ae2a2ce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472480 Commit-Queue: Eugene But <eugenebut@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Auto-Submit: Edward Lesmes <ehmaldonado@chromium.org> Cr-Commit-Position: refs/heads/master@{#817108}
-
Gabriel Marin authored
We see a large fraction of unmapped samples with cycles precise. Disable sampling on cycles precise while we investigate the root cause of unmapped samples. BUG=b:170558957,b:168312716 Change-Id: Ie566e8e870e0bebc8db8355222f4cbf8cc61e055 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2471579Reviewed-by:
George Burgess <gbiv@chromium.org> Reviewed-by:
Gabriel Marin <gmx@chromium.org> Commit-Queue: Gabriel Marin <gmx@chromium.org> Cr-Commit-Position: refs/heads/master@{#817107}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/9a6efa6be2ca..27f283f2507f 2020-10-14 robertphillips@google.com Update error handling in DDL-averse GMs 2020-10-14 mtklein@google.com refine SkPath::approximateBytesUsed() 2020-10-14 adlai@google.com Migrate GrContextPriv & ivars to GrDirectContext 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 robertphillips@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+doc/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Cq-Do-Not-Cancel-Tryjobs: true Bug: None Tbr: robertphillips@google.com Change-Id: Ice2c30a3f5d52cf42768b231a0d717e8ba21cb89 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472078Reviewed-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@{#817106}
-