- 22 Apr, 2019 40 commits
-
-
Emil A Eklund authored
Defer computation of ink bounds until needed instead of pre-computing it during shaping. This does not yet change how the bounds are accumulated. In legacy layout the bounds are computed and cached by CachingWordShaper immediately after shaping, minimizing changes to the API or performance. In LayoutNG bounds are no longer computed during the PrepareLayout step, where initial paragraph shaping occurs, nor during the subsequent layout step, where line breaking and fragment construction takes place. Instead bounds are only computed when NGPhysicalTextFragment::SelfInkOverflow is called, typically during painting. This avoids unnecessary and repetitive bounds computation, lowers memory consumption, and simplifies the implementation. Resulting in significant performance improvements. Specifically for forced and off-screen layout. This improves performance significantly for LayoutNG, most of the layout benchmarks in the blink_perf.layout suite improve by between 5% and 20%. chapter-reflow-once 20% long-line-nowrap 18% fit-content-change-available-size-text 11% hindi-line-layout 10% change-text-css-contain 10% latin-ebook-resize 10% Furthermore it significantly improves the more realistic loading.desktop numbers which measure time to fully render a number of real world sites. timeToFirstContentfulPaint:layout 10% timeToInteractive 7% timeToFirstMeaningfulPaint 3% cpuTimeToFirstMeaningfulPaint 3% Bug: 636993 Change-Id: Ib1dbdf4483137039ddba37e4a48c816369425788 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1572875 Commit-Queue: Emil A Eklund <eae@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#652875}
-
Chris Cunningham authored
NOTRY=true Bug: 954994 Change-Id: I5a91e3fd45cb886990ab103911117285a7f6a813 TBR: mbarowsky@chromium.org, wangxianzhu@chromium.org Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577496Reviewed-by:
Chrome Cunningham <chcunningham@chromium.org> Commit-Queue: Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#652874}
-
Siye Liu authored
This change aims to demonstrate how we can re-implement the following methods in a sane way. * TSFTextStore::CancelComposition() * TSFTextStore::ConfirmComposition() In our initial implementation [1], those two methods were implemented in a really hacky way. It was implemented by simulating a text change event during a composition with an assumption that the current IME will terminate the composition when it receives |OnTextChange|. |ITfContextOwnerCompositionServices::TerminateComposition| should have been used instead in this scenario. [1]: e7888801 Bug: 948783 Change-Id: Ibfb270d9f8dc2459ca73824c7405f10111e12ad1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1572240 Commit-Queue: Siye Liu <siliu@microsoft.com> Reviewed-by:
Yohei Yukawa <yukawa@chromium.org> Cr-Commit-Position: refs/heads/master@{#652873}
-
Tatiana Buldina authored
Change-Id: I35cddbfae13842633ff611e2f85966ac12e8b6cb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1572208Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: Tatiana Buldina <buldina@chromium.org> Cr-Commit-Position: refs/heads/master@{#652872}
-
Khushal authored
Qualcomm needs a usage bit to be set on AHardwareBuffers used with HWC for direct scanout. Currently its set internally in the framework but since Chrome allocates its own buffers with SurfaceControl, it needs to be added by Chrome. R=piman@chromium.org Bug: 889328 Change-Id: Ie5596a1bfcd9916d9676ac29c1f6c0ae2555cef6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576000 Commit-Queue: Antoine Labour <piman@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Auto-Submit: Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#652871}
-
Tommy C. Li authored
This CL surfaces the "Why this suggestion" text in the bubble for removing suggestions. Suggestions that can be removed now have a "More Info / Remove..." context menu entry. Suggestions that cannot be removed have a "More info..." context menu entry. Both bring up a bubble. This won't be the final UX treatment, but gets the capability in there for further refinement. Bug: 929477 Change-Id: I2dc9a5fea920653ead8ff9efea41fb77f91ff919 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1575872 Commit-Queue: Tommy Li <tommycli@chromium.org> Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Cr-Commit-Position: refs/heads/master@{#652870}
-
Ovidio Henriquez authored
This change formats the site_settings_handler.cc and site_settings_handler_unittest.cc files. Change-Id: Ia678d766341022b3f5fd3e06b8f2b3788d4f733b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1575825Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Ovidio de Jesús Ruiz-Henríquez <odejesush@chromium.org> Cr-Commit-Position: refs/heads/master@{#652869}
-
David Benjamin authored
Found by the newly-added fuzzer. Fortunately this is not a problem for any existing callers, which only ever passed a StringPiece derived from a full std::string (which promises to be NUL-terminated). Bug: 954703, 954760 Change-Id: I274de66b785d9f272a25264980e21878c5a77872 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577580Reviewed-by:
Matt Mueller <mattm@chromium.org> Commit-Queue: Matt Mueller <mattm@chromium.org> Commit-Queue: David Benjamin <davidben@chromium.org> Auto-Submit: David Benjamin <davidben@chromium.org> Cr-Commit-Position: refs/heads/master@{#652868}
-
Evan Stade authored
Bug: none Change-Id: If821edbfc5ea2f222c0a885cbe14d8a48c789d0a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1575868 Auto-Submit: Evan Stade <estade@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Evan Stade <estade@chromium.org> Cr-Commit-Position: refs/heads/master@{#652867}
-
Bence Béky authored
This is a follow-up to https://crrev.com/c/1570914. Bug: 912727 Change-Id: I284dbb580bb396da787c7d2f5755428458f88aeb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577479Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Bence Béky <bnc@chromium.org> Cr-Commit-Position: refs/heads/master@{#652866}
-
Tommy C. Li authored
This extends AutocompleteMatch with explanatory text as to where this suggestion came from. This is currently purely based on the AutocompleteMatchType. These are placeholder strings meant for development only. Bug: 929477 Change-Id: Ia8bb271b6f7ad4b2848011bec98d16d4f64f64de Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1574886 Commit-Queue: Tommy Li <tommycli@chromium.org> Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Cr-Commit-Position: refs/heads/master@{#652865}
-
li authored
Currently, we are sending text query for the timer notification actions. Improve it by adding timer deeplinks that trigger AlarmTimerManager APIs. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome Bug: b:119116816 Test: Manual Change-Id: Ife633a5978f9d0af1a5bef8a70782a7f7d364fa5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1531606 Commit-Queue: Li Lin <llin@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Cr-Commit-Position: refs/heads/master@{#652864}
-
chrome://flagsLily Chen authored
This flag will enable net::features::kSameSiteByDefaultCookies, which will make cookies set without a valid SameSite attribute default to being treated as SameSite=Lax. When the feature is enabled, SameSite=None is required to get the previous default behavior of not having any same-site restrictions. Bug: 953306 Change-Id: Iaa7983e6568cdadf18752e89539c3e411325694e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1574835Reviewed-by:
Maks Orlovich <morlovich@chromium.org> Commit-Queue: Lily Chen <chlily@chromium.org> Cr-Commit-Position: refs/heads/master@{#652863}
-
Matt Menke authored
The class docs mention a number of methods that I have since removed. Bug: 912727 Change-Id: Ic3ac8c28167b09c8d9acf3b336b58385e17a9ff4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1575725 Commit-Queue: Matt Menke <mmenke@chromium.org> Reviewed-by:
Bence Béky <bnc@chromium.org> Cr-Commit-Position: refs/heads/master@{#652862}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/cbc33b8e3574..7a5b6ec0f6c0 git log cbc33b8e3574..7a5b6ec0f6c0 --date=short --no-merges --format='%ad %ae %s' 2019-04-22 egdaniel@google.com Update comment on vulkan allocator. 2019-04-22 egdaniel@google.com Add back deprecated GrCotnext flush API till clients get fixed. Created with: gclient setdep -r src/third_party/skia@7a5b6ec0f6c0 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=mtklein@chromium.org Change-Id: Ifb87e61e0db201b05a73af059b645d9af4280a80 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577565Reviewed-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@{#652861}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/f66107f9aa31..fe8eb40a01ae git log f66107f9aa31..fe8eb40a01ae --date=short --no-merges --format='%ad %ae %s' 2019-04-22 dburger@chromium.org In config skew test switch to using proto buffer. Created with: gclient setdep -r src/third_party/chromite@fe8eb40a01ae 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@chromium.org Change-Id: I24bcc965c0f3f4208fb3a390ec7c772c8ba17dbe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577564Reviewed-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@{#652860}
-
Xianzhu Wang authored
Bug: 363609, 954591 Change-Id: I522eaf916c9b2d7dbb3ba95a904e9b272d920902 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577058Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#652859}
-
Robert Ogden authored
The DRP session key may not be available from the request headers. If it isn't, get it from the UI thread instead. Bug: 952523 Change-Id: I82befab8a97b5c463db37b0d5e82edc640d9af18 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576154Reviewed-by:
Ryan Sturm <ryansturm@chromium.org> Commit-Queue: Robert Ogden <robertogden@chromium.org> Cr-Commit-Position: refs/heads/master@{#652858}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/bcc71a322953..4f15ce2eb993 git log bcc71a322953..4f15ce2eb993 --date=short --no-merges --format='%ad %ae %s' 2019-04-22 swiftshader.regress@gmail.com Regres: Update test lists @ bcc71a32 Created with: gclient setdep -r src/third_party/swiftshader@4f15ce2eb993 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-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: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=swiftshader-team+autoroll@chromium.org Change-Id: I13750bafa8ef672260477937fd3dd6ecc5db18cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577562Reviewed-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@{#652857}
-
chrome://os-settings/James Cook authored
Use pageVisibility to hide sections like autofill, show bookmarks bar, etc. Bug: 950007 Change-Id: I871322a3eca51eb6995fa4ee304461c9f8bd0f35 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1575032Reviewed-by:
Dan Beam <dbeam@chromium.org> Commit-Queue: James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#652856}
-
Eric Aleshire authored
As part of the EG2 migration, app-side helpers that used to GREYAssert now return NSError*, which are asserted on in test-side code. ASSERT_IF_ERROR simplifies the modification required for test code that call these app-side helpers, while preserving the line number of the failure. This CL aligns the test code in these 4 CLs to use ASSERT_IF_ERROR: http://crrev.com/c/1562756 http://crrev.com/c/1553085 http://crrev.com/c/1558155 http://crrev.com/c/1559889 Bug: 922813 Change-Id: I2d82dd9cd6a9eab6913418d357649c1f13f3699f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1574954 Commit-Queue: ericale <ericale@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#652855}
-
Alison Maher authored
This change implements Implement ITextRangeProvider::Move. This implementation uses MoveEndpointByUnit to do most of the functionality, with some edge cases handled. Unit tests were added for all unit types except Format and Paragraph. Unit tests for these will be added once MoveEndpointByUnit is completed for each type. AssertMoveEndpointByUnit() and AssertMove() helper functions were added to the unit tests to decrease the amount of repeated code and to increase readability. Bug: 928948 Change-Id: I22dfa7017d162b83fdc6db66dbcfd5266d98bfcf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1569522Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Alison Maher <almaher@microsoft.com> Cr-Commit-Position: refs/heads/master@{#652854}
-
Aran Gilman authored
In particular, the following were changed: * Reduce wordiness. * Run mdformat. * Remove information about SCOPED_TRACE(), since that appears to be outdated (or maybe just misleading). * Replace section on Google-internal script with link to internal Chrome A11y page on the topic. Change-Id: I94e3a47f435f092b225a60ae2e35c06ddba8d2ae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1555417Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#652853}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/6350cb0f4bb3..cbc33b8e3574 git log 6350cb0f4bb3..cbc33b8e3574 --date=short --no-merges --format='%ad %ae %s' 2019-04-22 brianosman@google.com Add SkSL viewing/editing to viewer Created with: gclient setdep -r src/third_party/skia@cbc33b8e3574 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=mtklein@chromium.org Change-Id: Icdf90dcfc90ea4e93ece175bf62fa5c0139cbf6e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576151Reviewed-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@{#652852}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/1800687a19fc..65dffa4595e2 Created with: gclient setdep -r src-internal@65dffa4595e2 The AutoRoll server is located here: https://autoroll-internal.skia.org/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=chcunningham@chromium.org,loyso@chromium.org,clamy@chromium.org,flackr@chromium.org Change-Id: Ib5e29768284f8532be816d552f1492a31f9f75ec Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576150Reviewed-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@{#652851}
-
Ahmed Fakhry authored
This CL adds the remaining desks containers in preparation for using them in the next CL. This CL also makes sure that the correct container IDs list is used based on whether the Virtual Desks feature is enabled or not. BUG=866622 TEST=ash_unittests are passing. Change-Id: I5919b362b484a2eab13d4d6243bdbdc9c10ef442 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1568766Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Reviewed-by:
Mitsuru Oshima (Slow 4/22-26) <oshima@chromium.org> Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#652850}
-
Charlie Andrews authored
NOTRY=true TBR=ulan@chromium.org, mythria@chromium.org Bug: 954959 Change-Id: I685f32972feec1f2f0fc183babf56ebb808669c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577559Reviewed-by:
Charlie Andrews <charliea@chromium.org> Commit-Queue: Charlie Andrews <charliea@chromium.org> Cr-Commit-Position: refs/heads/master@{#652849}
-
Charlie Andrews authored
There's a bug (linked) where one story is failing, calling other stories to unexpectedly skip. We originally thought that this was limited to the stories with the Ads prefix, but ebay.fr has started failing and it's clear that our original belief was wrong. NOTRY=true TBR=ulan@chromium.org,mythria@chromium.org Bug: 954229 Change-Id: Id4c3770094b52bf7ec5bacfca12980581e81e276 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576156Reviewed-by:
Charlie Andrews <charliea@chromium.org> Commit-Queue: Charlie Andrews <charliea@chromium.org> Cr-Commit-Position: refs/heads/master@{#652848}
-
Kaan Alsan authored
Sequence numbers are now incremented based on vsync intervals. If two consecutive BeginFrameArgs are created 5 ticks apart, then their sequence numbers will differ by 5 instead of 1. Doc: https://docs.google.com/document/d/1rvC3iBqL41R2dg_QN92yAFxU9ic6Irk89-9LBlyBJ_U/edit?usp=sharing Change-Id: I8b3d8614079cc2ef44f8fad6420314a97b12f260 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1538540 Commit-Queue: Kaan Alsan <alsan@google.com> Reviewed-by:
Sunny Sachanandani <sunnyps@chromium.org> Cr-Commit-Position: refs/heads/master@{#652847}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 4e27c1c2. With Chromium commits locally applied on WPT: 0a8f3ffa "Use testdriver Action API in WPT pointerevent touch tests - Part 2" 4e921520 "[Code Health] Remove unnecessary reference file for web test" 40465b74 "[Animation Worklet] Copy the effects of a migrating animator over to new global scope" e28269b6 "[LayoutNG/PE] Clear visual overflow for LayoutText before setting." 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=foolip No-Export: true Change-Id: Ife0345ad35fc2890640ac0a7183d4dabd07faa21 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576148Reviewed-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@{#652846}
-
Charlie Andrews authored
The story has been flaky since 3/26. NOTRY=true TBR=sullivan@chromium.org,tdresser@chromium.org, perezju@chromium.org Bug: 954949 Change-Id: I2a60b0faaa723aa5b1dda0e23ab310dc1751714c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576155 Commit-Queue: Charlie Andrews <charliea@chromium.org> Reviewed-by:
Charlie Andrews <charliea@chromium.org> Cr-Commit-Position: refs/heads/master@{#652845}
-
Charlie Andrews authored
The story hasn't passed reliably since 3/26. NOTRY=true TBR=vmiura@chromium.org,sadrul@chromium.org Bug: 954948 Change-Id: I0f2dc1cb5f372dc5cbe9607897de189f65965ae2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576153Reviewed-by:
Charlie Andrews <charliea@chromium.org> Commit-Queue: Charlie Andrews <charliea@chromium.org> Cr-Commit-Position: refs/heads/master@{#652844}
-
Bence Béky authored
Make sure every .h and .cc file in //net ends in exactly one newline character. Change-Id: I5c7777055705e6a881b37f8f8386880dd810e9fc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576437Reviewed-by:
Paul Jensen <pauljensen@chromium.org> Commit-Queue: Bence Béky <bnc@chromium.org> Cr-Commit-Position: refs/heads/master@{#652843}
-
Koji Ishii authored
Following bot results are included. 18534 18536 18541 18547 18559 2 lines were removed and 2 lines were deflaked by consecutive results since 18518. TBR=eae@chromium.org, mstensho@chromium.org NOTRY=true Bug: 591099 Change-Id: I94462bd4b20fa7abc2ef163c0d4361d079a3867c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1574872Reviewed-by:
Koji Ishii <kojii@chromium.org> Commit-Queue: Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#652842}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/ba1602896d72..6350cb0f4bb3 git log ba1602896d72..6350cb0f4bb3 --date=short --no-merges --format='%ad %ae %s' 2019-04-22 mtklein@google.com Revert "Add explicit GrSurfaceProxy flag to skip explicit resource allocation" 2019-04-22 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update go_deps asset 2019-04-22 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 145ec7fa7c81..c467f7b54188 (4 commits) 2019-04-22 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader a16238df3f28..bcc71a322953 (7 commits) 2019-04-22 skia-autoroll@skia-public.iam.gserviceaccount.com Roll ../src a55917cb..3ed0f757 (344 commits) 2019-04-21 reed@google.com use portable typeface for new gm 2019-04-21 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update SKP version 2019-04-21 rmistry@google.com Skip __init__.py in webpages_playback.py 2019-04-21 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update go_deps asset 2019-04-20 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update go_deps asset 2019-04-19 jvanverth@google.com Add Metal support for dynamic buffers. 2019-04-19 reed@google.com Add secret draw-behind method 2019-04-19 bsalomon@google.com SkClipStack::isRRect succeeds if stack is an intersection of rects. 2019-04-19 csmartdalton@google.com ccpr: Calculate edge coverage in the coverage processor 2019-04-19 ethannicholas@google.com Fixed internal skslc error with negated literal vectors 2019-04-19 egdaniel@google.com Adjust vulkan memory allocation block size knobs to better match the type of draws we do. 2019-04-19 ethannicholas@google.com reworked SPIR-V binary operations and added support for VectorTimesScalar 2019-04-19 robertphillips@google.com Add explicit GrSurfaceProxy flag to skip explicit resource allocation Created with: gclient setdep -r src/third_party/skia@6350cb0f4bb3 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 BUG=chromium:b/122296071 TBR=mtklein@chromium.org Change-Id: Ia6c5b3d0d39084ce4babfc479d2e7c8a9fc909aa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576147Reviewed-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@{#652841}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/b225628db89b..1800687a19fc Created with: gclient setdep -r src-internal@1800687a19fc The AutoRoll server is located here: https://autoroll-internal.skia.org/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=chcunningham@chromium.org,loyso@chromium.org,clamy@chromium.org,flackr@chromium.org Change-Id: I95318907a9c76583de1dfe07853daed88d8047f3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576145Reviewed-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@{#652840}
-
Henrique Ferreiro authored
As advised in [1], this CL ports calls to Foo::Create() factory functions to use MakeGarbageCollected<Foo> from classes in //third_party/blink/renderer/core/html. [1] https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/iJ1bawbxbWs/vEdfT5QtBgAJ Bug: 939691 Change-Id: I59157e7d12ab3104f28c891fcfe28d8ad89cd8c5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1572348Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Henrique Ferreiro <hferreiro@igalia.com> Cr-Commit-Position: refs/heads/master@{#652839}
-
Bence Béky authored
Bug: 954503 Change-Id: I54d5c45d2d2e3a85c6f88a214f19adaefe5e5a22 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577478Reviewed-by:
Paul Jensen <pauljensen@chromium.org> Commit-Queue: Bence Béky <bnc@chromium.org> Cr-Commit-Position: refs/heads/master@{#652838}
-
chromium-autoroll authored
This CL may cause a small binary size increase, roughly proportional to how long it's been since our last AFDO profile roll. For larger increases (around or exceeding 100KB), please file a bug against gbiv@chromium.org. Additional context: https://crbug.com/805539 Please note that, despite rolling to chrome/android, this profile is used for both Linux and Android. The AutoRoll server is located here: https://autoroll.skia.org/r/afdo-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=gbiv@chromium.org Change-Id: I0fac9632aff1092a292a054aaf8ce581b15d6feb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576146Reviewed-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@{#652837}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 0fad4bc4. With Chromium commits locally applied on WPT: 0a8f3ffa "Use testdriver Action API in WPT pointerevent touch tests - Part 2" 4e921520 "[Code Health] Remove unnecessary reference file for web test" 40465b74 "[Animation Worklet] Copy the effects of a migrating animator over to new global scope" e28269b6 "[LayoutNG/PE] Clear visual overflow for LayoutText before setting." 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=foolip No-Export: true Change-Id: I5b1b85810fbe60837c437267a010f9bd69fa7d98 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1577404Reviewed-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@{#652836}
-