- 12 Nov, 2019 40 commits
-
-
Denis Kuznetsov authored
Bug: 1023397 Change-Id: Iaecffb245ca0da14a8a048966690534eb92f3046 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1912122Reviewed-by:
Roman Sorokin [CET] <rsorokin@chromium.org> Commit-Queue: Denis Kuznetsov [CET] <antrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#714532}
-
Liviu Rau authored
We'll limit testing on the new builder to devtools-specific tests in a follow up CL. Bug: 1018204 Change-Id: I45e7442258f4de47999fc1d0b26cd1b31b96e5ca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1899502 Auto-Submit: Liviu Rau <liviurau@chromium.org> Commit-Queue: Liviu Rau <liviurau@chromium.org> Reviewed-by:
Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#714531}
-
danakj authored
Currently the parsing step of TestExpectations takes ~11 seconds on a development machine, with the majority of that time in the _collect_matching_tests() step, building the list of |matching_tests|. This can be sped up considerably by changing _all_tests from a flat list of test names to a dictionary tree of path components. Then matching a directory of tests is a search in the tree + iterating the subtree below the matching directory node, instead of a search through the full list with substring matching. This reduces the time locally for parsing TestExpectations from ~11 to ~3 seconds, saving ~72% of the time on this step. With logging in web_tests/controllers/manager.py: + _log.debug("> build TestExpectations"); + start = time.time() self._expectations = test_expectations.TestExpectations(self._port, test_names) + _log.debug("< build TestExpectations %fs", time.time()-start); Before: 15:28:22.789 167015 < build TestExpectations 11.192820s After: 11:23:38.824 11280 < build TestExpectations 3.105809s On the windows try bot: Before: https://chromium-swarm.appspot.com/task?id=4874d0c111ee7a10 11:48:32.359 11980 Parsing expectations ... 11:49:15.140 11980 Found 3676 tests (total 86570); running 3439, skipping 237. = 43 seconds After: https://chromium-swarm.appspot.com/task?id=4874f28bff322210 12:24:46.461 11648 Parsing expectations ... 12:25:22.805 11648 Found 3676 tests (total 86570); running 3439, skipping 237. = 36 seconds R=robertma@chromium.org Bug: 982208 Change-Id: I04f5c3c1b09cf4f1b42ad501d624f83f6f378a97 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906472Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#714530}
-
sczs authored
This tap gesture was preventing the TableView from recognizing some delegate callback like didSelectRow. Setting cancelsTouchesInView to NO "forwards" the touch to the TableView successfully. Bug: 1018341 Change-Id: I249e6795b47d67c168eaf574dfdb765ee1bd6d38 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911480Reviewed-by:
Chris Lu <thegreenfrog@chromium.org> Commit-Queue: Sergio Collazos <sczs@chromium.org> Cr-Commit-Position: refs/heads/master@{#714529}
-
Thomas Lukaszewicz authored
Added the access operator to the color mixer class, updated existing code and tests. Changed AddMixer() to return a mixer by reference. Bug: 1887666 Change-Id: I2ae180f77d73e3ce4567d061b5505d920677c450 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1910521 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#714528}
-
Jinsuk Kim authored
The reported crash can happen when navigation sheet's request to show fails. It should have always called |hideContent| to remove itself from the queue but it was done only when the current sheet state is hidden. This CL fixes it to perform the hiding operation unconditionally. Bug: 1021932 Change-Id: I3fa3c08ff814d9aa2aa149196b9f5e91b262cb73 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1910819Reviewed-by:
Matthew Jones <mdjones@chromium.org> Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Cr-Commit-Position: refs/heads/master@{#714527}
-
Connie Wan authored
Use the tab height constant instead of the height of the view. The former should match the desired height anyway, since group headers are TabSlotViews. The latter can sometimes be 0, e.g. when dragging a group header into a new window. Bug: 1005333 Change-Id: I6000af475cb25f0635fbacc1f0ef8acd6aa9fe67 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906329Reviewed-by:
Charlene Yan <cyan@chromium.org> Reviewed-by:
Taylor Bergquist <tbergquist@chromium.org> Commit-Queue: Connie Wan <connily@chromium.org> Cr-Commit-Position: refs/heads/master@{#714526}
-
Avery Musbach authored
When you drag a window from clamshell overview, there shall be split view drag indicators on every display. As of the present CL, all labels will be based on whether the dragged window can be snapped in split view on the display where the drag started. I will fix that in a separate CL. Bug: 961171 Change-Id: Iabef96cece3dcc5e7d45050c3218aba54993d593 Fixed: 995413 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903614Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Commit-Queue: Avery Musbach <amusbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#714525}
-
Toby Huang authored
This documentation-only CL modifies user_types.md to mention LoggedInUserMixin as a convenient way to log in as child user for browser tests. Bug: None Change-Id: Ib6d3833600bb1fcd74e1fee61e0d68446dbee7c5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911219Reviewed-by:
Aga Wronska <agawronska@chromium.org> Commit-Queue: Toby Huang <tobyhuang@chromium.org> Cr-Commit-Position: refs/heads/master@{#714524}
-
Anupam Snigdha authored
-The Trace method was missing EventTargetWithInlineData::Trace call -Using ActiveScriptWrappable now so EditContext wrapper object remains alive till the execution context is valid and when the composition events arrive, they can be processed properly by the event listeners for the EditContext. - Also removed an invalid test case that had a global reference to EditContext which was causing memory leaks Test: run_web_tests web_tests/editing/input/edit-context.html Bug: 1023351, 1023242 Change-Id: If7e9d7ebea195095b0ac5048cd0864d3e0b730f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911280Reviewed-by:
Kent Tamura <tkent@chromium.org> Commit-Queue: Anupam Snigdha <snianu@microsoft.com> Cr-Commit-Position: refs/heads/master@{#714523}
-
Denis Kuznetsov authored
Preliminary step for removing gaia-page template in saml-interstitial template. Bug: 981472 Change-Id: I8a17b079a6b45caa376a54a124fd1833cc414fa1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1897699Reviewed-by:
Roman Sorokin [CET] <rsorokin@chromium.org> Commit-Queue: Denis Kuznetsov [CET] <antrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#714522}
-
Vaclav Brozek authored
Parsing a single CSV row inside CSVPassword::Parse can fail for two reasons: bad syntax, or incorrect semantics. So far, both cases have been reported simply as an error. Soon, the distinction will be needed to correctly report from CSVPasswordSequence. Therefore this CL changes the return type of CSVPassword::Parse from Boolean (whether parsing failed) to a new status enum (how it failed): OK, Syntax error or Semantic error. This enum describes a subset of ParserState::Result, but ParserState::Result was not directly used here, because the CSV logic should not know about its own client code. Bug: 934326 Change-Id: I621e2faa38241541d684357b2f54d9f5fb8ed923 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1908528 Commit-Queue: Vaclav Brozek <vabr@chromium.org> Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#714521}
-
Robert Kaplow authored
Revert "Add dominant/latest version index to PaintTiming.NavigationToFirstContentfulPaint UKM event." This reverts commit 83bbeb87. Reason for revert: impact on pipeline Original change's description: > Add dominant/latest version index to PaintTiming.NavigationToFirstContentfulPaint UKM event. > > Change-Id: Ib63a04cc663011872f60bd04be420b3207dffb29 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1869451 > Auto-Submit: Brian White <bcwhite@chromium.org> > Reviewed-by: Robert Kaplow <rkaplow@chromium.org> > Commit-Queue: Robert Kaplow <rkaplow@chromium.org> > Cr-Commit-Position: refs/heads/master@{#708206} TBR=rkaplow@chromium.org,bcwhite@chromium.org,sdoyon@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Change-Id: I7ef5bc2f83fdbf3e69fd92f053b80632c12712e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904687Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Robert Kaplow <rkaplow@chromium.org> Cr-Commit-Position: refs/heads/master@{#714520}
-
Mikhail Khokhlov authored
Bug: 981349 Change-Id: I85bd9eea5a612cb5aaa6c519c8750a79505007c0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911785 Commit-Queue: Mikhail Khokhlov <khokhlov@google.com> Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#714519}
-
Andrey Kosyakov authored
Bug: 1022937 Change-Id: Iacbda3b8a13f41760c74c252fb71bccc0ac66e1c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906939Reviewed-by:
Peter Kvitek <kvitekp@chromium.org> Reviewed-by:
Yutaka Hirano <yhirano@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#714518}
-
Jasper Chapman-Black authored
* Add DiffSizeInfo, with logic for matching up symbols from two loaded SizeInfos. This doesn't yet consider the new native and Java canonical name processing code, but the boilerplate is there. * Add scaffolding in caspian_web.cc to support diffing. * Add async waits in .js to avoid attempts to call WebAssembly code before module is loaded. Bug: 1011921 Change-Id: Ia121e78fd5c8c2d7e07c53de345e53e9fa80d88d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906109 Commit-Queue: Jasper Chapman-Black <jaspercb@chromium.org> Reviewed-by:
Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#714517}
-
Mikhail Khokhlov authored
Stop checking for aggregated trace from telemetry, and stop uploading diagnostics artifact. Bug: 981349 Change-Id: I045e97ce875751b3621177bac1a38949cb1272c5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911745 Commit-Queue: Mikhail Khokhlov <khokhlov@google.com> Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#714516}
-
Owen Min authored
BrowserDMToken contains a string and an enum. It should be able to be copied and moved as a normal string. Explicitly declare copy and move constructor and operator. Also move the factory function declaration to the top of the class. Bug: 1020296 Change-Id: I401812b07db1bd2801a4133cb67592f9ef4bc6d2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906477Reviewed-by:
Roger Tawa <rogerta@chromium.org> Commit-Queue: Owen Min <zmin@chromium.org> Cr-Commit-Position: refs/heads/master@{#714515}
-
Cliff Smolinsky authored
This change fixes multiple issues with the process-internals page when viewed in high contrast. Specifically, the header background and tree highlight colors are fixed. See the bug for screenshots. Bug: 1023585 Change-Id: I6405e8b02c5020eb64d3aff93c564ab20a613ef0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911482Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: Cliff Smolinsky <cliffsmo@microsoft.com> Cr-Commit-Position: refs/heads/master@{#714514}
-
Michael Crouse authored
Bug: 1022625 Change-Id: Idd906b79dda4ee54df7d743ceb52ddfe4f2447ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1907313 Auto-Submit: Michael Crouse <mcrouse@chromium.org> Commit-Queue: Michael Crouse <mcrouse@chromium.org> Reviewed-by:
Tarun Bansal <tbansal@chromium.org> Reviewed-by:
Sophie Chang <sophiechang@chromium.org> Cr-Commit-Position: refs/heads/master@{#714513}
-
Jit Yao Yap authored
Change-Id: Id1b567b87d88d3f3c29403ad9ec0c794ab9c9fd9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911794Reviewed-by:
Alexander Hendrich <hendrich@chromium.org> Commit-Queue: Jit Yao Yap <jityao@google.com> Cr-Commit-Position: refs/heads/master@{#714512}
-
Oriol Brufau authored
Calculating the used sizing function for a track is not a very expensive operation, but it's not trivial either, and the track sizing algorithm needs to access sizing functions all over the place. This ends up having a performance cost, especially for spanning items. Intrinsic contributions from items that span a single track are handled in a simpler way than when the span is greater than 1. In the former case, SizeTrackToFitNonSpanningItem only calculates the track sizing function of each track once per each item in that track. But in the latter case we not only calculate the track sizing function of multiple tracks per item, we also repeat this 5 times in order to handle the various TrackSizeComputationPhase. Therefore, to increase performance, this patch caches the used track sizing functions in the tracks themselves. This improves the auto-grid-lots-of-spanning-data perf test by 40-50%, nested-grid by 10-15%, and auto-grid-lots-of-data by 5-10%. Bug: 1021929 Change-Id: I4309629bfed28a78421889d157251643efc06b26 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1901292 Commit-Queue: Oriol Brufau <obrufau@igalia.com> Reviewed-by:
Sergio Villar <svillar@igalia.com> Cr-Commit-Position: refs/heads/master@{#714511}
-
Theresa Wellington authored
Disable flaky #testStartWithUrlRecorded and #testFromExternalAppRecorded on O+. BUG=1023433 TBR=alexilin@chromium.org Change-Id: Ic3111d8cdd1af44003b3ffc6e211d330583b222f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911702Reviewed-by:
Theresa <twellington@chromium.org> Reviewed-by:
Alex Ilin <alexilin@chromium.org> Commit-Queue: Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#714510}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/bd27b14638e4..051cae5d11be git log bd27b14638e4..051cae5d11be --date=short --no-merges --format='%ad %ae %s' 2019-11-12 mbonadei@webrtc.org RTC_EXPORT IceServer, StatsReport::{IdBase,Value}. Created with: gclient setdep -r src/third_party/webrtc@051cae5d11be If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/webrtc-chromium-autoroll Please CC webrtc-chromium-sheriffs-robots@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/+/master/autoroll/README.md TBR=webrtc-chromium-sheriffs-robots@google.com Bug: None Change-Id: Id5b23ba12d551f053a7ed5a476775e5cc8dbeda5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1910796Reviewed-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@{#714509}
-
Theresa Wellington authored
BUG=1023833 TBR=wychen@chromium.org Change-Id: If741c0f5a81d87fde4a0262067ece9cb0b6427c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1912088 Commit-Queue: Theresa <twellington@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#714508}
-
Mohamed Heikal authored
This cl adds a presubmit warning on upload if the CL contains images. The warning points the author to //docs/speed/binary_size/optimization_advice.md#optimizing-images so as to ensure they have read the optimization tips and tried applying them to their images. There is no easy way to check if the image is optimized thus the presubmit always fires if there are images but does not block CQ. Bug: 921227 Change-Id: Ib8dd144bd2f728b166ca5b1c9d3882df24e0216b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1899645 Commit-Queue: Mohamed Heikal <mheikal@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#714507}
-
Elly Fong-Jones authored
The symbol is no longer present at all; just hack use of it out for now. Bug: 973128 Change-Id: I39bc4fcfa6a734ac47e2a5237eb35e53a7a6370d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906333Reviewed-by:
Matt Reynolds <mattreynolds@chromium.org> Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#714506}
-
Vincent Boisselle authored
Bug: 1023825 Change-Id: I2304c6085c39dfdbbb412b68d7beea017cc8d924 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911000Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Roger McFarlane <rogerm@chromium.org> Commit-Queue: Alexei Svitkine <asvitkine@chromium.org> Commit-Queue: Roger McFarlane <rogerm@chromium.org> Cr-Commit-Position: refs/heads/master@{#714505}
-
Evan Stade authored
Also remove obsolete NotificationService includes from //chrome/browser/ui/webui/settings/ Bug: 268984 Change-Id: I2c5cf6e456965f6d98c844bf8c81c423add00c1e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1891737 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Reviewed-by:
David Roger <droger@chromium.org> Cr-Commit-Position: refs/heads/master@{#714504}
-
Evan Stade authored
Bug: none Change-Id: I5bde1554a5f403ccfa99ab0851be2978dec81846 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904750 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#714503}
-
Joe Mason authored
These no longer need to be in the shared components/chrome_cleaner directory because new versions of Chrome do not use them to communicate with the cleaner. The cleaner itself still needs to build against them so that the cleaner can communicate with older versions of chrome that set kChromeMojoPipeTokenSwitch on the command-line. Also split out FilePath, RegistryKey and ExtensionId into a new footprints.mojom interface, to eliminate some bogus dependencies on chrome_prompt.mojom. R=proberge Bug: 969139 Change-Id: Ib6f5b2dbf6f08d389453bcea86d52cdc5b078bec Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903956Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Reviewed-by:
Cait Phillips <caitkp@chromium.org> Reviewed-by:
proberge <proberge@chromium.org> Commit-Queue: Joe Mason <joenotcharles@chromium.org> Cr-Commit-Position: refs/heads/master@{#714502}
-
Pavel Shmakov authored
Discussion: https://docs.google.com/document/d/1M-ocVxRpj43fGrM4mdBazEgcDa0nbWPxD_NxfsPnrkg/edit?ts=5dc96bc9 This CL implements the short-term solution, i.e. only an onRenderProcessGone callback. Change-Id: I51cf71975db4d72e940e15b5f2acca6cde3ff4a0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1901083Reviewed-by:
Bo <boliu@chromium.org> Reviewed-by:
Tobias Sargeant <tobiasjs@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Commit-Queue: Pavel Shmakov <pshmakov@chromium.org> Cr-Commit-Position: refs/heads/master@{#714501}
-
Matthew Jones authored
Bug: Change-Id: If7d4dfd554bb9224f3f12266f1bfdab99040225e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1910802 Auto-Submit: Matthew Jones <mdjones@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#714500}
-
Manu Cornet authored
Change-Id: I4ab18dcab81d8622a52b9b744bd7aa57ae1693da Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911220Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Manu Cornet <manucornet@chromium.org> Cr-Commit-Position: refs/heads/master@{#714499}
-
Denis Kuznetsov authored
Bug: 1023370, 852557 Change-Id: I2d859e6f38f494ad15293939d322a31cc0ac567d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911216Reviewed-by:
Roman Sorokin [CET] <rsorokin@chromium.org> Commit-Queue: Denis Kuznetsov [CET] <antrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#714498}
-
Mathias Carlen authored
Before this patch, three different activity types were tested in the same test. That resulted in the activities to interfere with one another. This patch splits the tests up into one test file per activity. R=szermatt@chromium.org Bug: 1018183 Change-Id: Ie09202e9ac69e96ac207ffe3f43b4e00e592d343 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1910088Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Stephane Zermatten <szermatt@chromium.org> Commit-Queue: Mathias Carlen <mcarlen@chromium.org> Cr-Commit-Position: refs/heads/master@{#714497}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e8fc00fb..5bd261c7 Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: Ic37aee1120a6706c570d556eb1839c825092b5cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911245Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#714496}
-
kylechar authored
Ensure the GPU thread task to schedule DC overlays runs after the mailboxes have been mapped to textures. Bug: 1003040 Change-Id: I0a5a8b4ce1c24d8b64fbb600092703e5e8a2d136 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1907193 Commit-Queue: kylechar <kylechar@chromium.org> Reviewed-by:
Jonathan Backer <backer@chromium.org> Cr-Commit-Position: refs/heads/master@{#714495}
-
Kai Ninomiya authored
- New styles from upstream to fix text wrapping. - Add the tests that require glslang. They still won't run - they automatically skip themselves since the glslang dependency is not available. Soon I'll replace this file with a similar auto-generated one. Bug: None Change-Id: I60c64eddce0030a41bf3bb4d97cd8fdaed4905c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906371Reviewed-by:
Austin Eng <enga@chromium.org> Commit-Queue: Austin Eng <enga@chromium.org> Auto-Submit: Kai Ninomiya <kainino@chromium.org> Cr-Commit-Position: refs/heads/master@{#714494}
-
W. James MacLean authored
This test flakes regularly on Kitkat, less often on marshmallow. TBR=jianli@chromium.org Bug: 1022322 Change-Id: Idca960761c3a4a56fdd2027b79a53943fe07199e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1911390Reviewed-by:
James MacLean <wjmaclean@chromium.org> Commit-Queue: James MacLean <wjmaclean@chromium.org> Cr-Commit-Position: refs/heads/master@{#714493}
-