- 19 Nov, 2017 2 commits
-
-
John Budorick authored
This reverts commit e0b4355f. Reason for revert: Breaks chrome_public_test_apk in debug builds. Will explain more in crbug.com/786743. Original change's description: > Add Android OOP HP end-to-end tests. > > This CL has three components: > 1) The bulk of the logic in OOP HP was refactored into ProfilingTestDriver. > 2) Adds a java instrumentation test, along with a JNI shim that forwards into > ProfilingTestDriver. > 3) Creates a new apk: chrome_public_apk_for_test that contains the same > content as chrome_public_apk, as well as native files needed for (2). > chrome_public_apk_test now targets chrome_public_apk_for_test instead of > chrome_public_apk. > > Other ideas, discarded: > * Originally, I attempted to make the browser_tests target runnable on > Android. The primary problem is that native test harness cannot fork > or spawn processes. This is difficult to solve. > > More details on each of the components: > (1) ProfilingTestDriver > * The TracingController test was migrated to use ProfilingTestDriver, but the > write-to-file test was left as-is. The latter behavior will likely be phased > out, but I'll clean that up in a future CL. > * gtest isn't supported for Android instrumentation tests. ProfilingTestDriver > has a single function RunTest that returns a 'bool' indicating success. On > failure, the class uses LOG(ERROR) to print the nature of the error. This will > cause the error to be printed out on browser_test error. On instrumentation > test failure, the error will be forwarded to logcat, which is available on all > infra bot test runs. > (2) Instrumentation test > * For now, I only added a single test for the "browser" mode. Furthermore, I'm > only testing the start with command-line path. > (3) New apk > * libchromefortest is a new shared library that contains all content from > libchrome, but also contains native sources for the JNI shim. > * chrome_public_apk_for_test is a new apk that contains all content from > chrome_public_apk, but uses a single shared library libchromefortest rather > than libchrome. This also contains java sources for the JNI shim. > * There is no way to just add a second shared library to chrome_public_apk > that just contains the native sources from the JNI shim without causing ODR > issues. > * chrome_public_test_apk now has apk_under_test = chrome_public_apk_for_test. > * There is no way to add native JNI sources as a shared library to > chrome_public_test_apk without causing ODR issues. > > Finally, this CL drastically increases the timeout to wait for native > initialization. The previous timeout was 2 * > CriteriaHelper.DEFAULT_MAX_TIME_TO_POLL, which flakily failed for this test. > This suggests that this step/timeout is generally flaky. I increased the timeout > to 20 * CriteriaHelper.DEFAULT_MAX_TIME_TO_POLL. > > Bug: 753218 > Change-Id: Ic224b7314fff57f1770a4048aa5753f54e040b55 > Reviewed-on: https://chromium-review.googlesource.com/770148 > Commit-Queue: Erik Chen <erikchen@chromium.org> > Reviewed-by: John Budorick <jbudorick@chromium.org> > Reviewed-by: Brett Wilson <brettw@chromium.org> > Cr-Commit-Position: refs/heads/master@{#517541} TBR=brettw@chromium.org,erikchen@chromium.org,jbudorick@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 753218 Change-Id: I0ce13ddac560fc685bce8798a59d2e1c784e08af Reviewed-on: https://chromium-review.googlesource.com/778339Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#517726}
-
Aleks Totic authored
This reverts commit 4e68cd40. Reason for revert: Couple of outstanding bugs. Sorry I did not get to code review this before landing. Original change's description: > [layout test results.html] Small UI tweaks and tiny bug fixes > > - When click the toolbar to select a view during animation, show the > view for 1 second. This is convenient to briefly view a specific view > without stopping the animation. Previously the time showing the clicked > view was random. > > - Let GUI.getExpectation(el) handle cases that the el is under > result-frame, so that keyboard navigation still works when the focus > is under result-frame (e.g. after the toolbar or the image result is > clicked). > > - Let GUI.activeExpectation() return the open expectation if no > expectation line can be found from the focused element, so that keyboard > navigation can be based on the open expectation if the focus is neither > under the expectation line nor result-frame. > > - Correct total count. Previously the total count didn't include expected > failures, skipped and wontfix tests, etc. > > Change-Id: Ibc4b697c52a7b5d37f0ebbfb5c925cc478f15f06 > Reviewed-on: https://chromium-review.googlesource.com/777469 > Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> > Reviewed-by: Quinten Yearsley <qyearsley@chromium.org> > Cr-Commit-Position: refs/heads/master@{#517674} TBR=wangxianzhu@chromium.org,qyearsley@chromium.org,atotic@chromium.org Change-Id: I214a79799ab0c5744c00c0cbd85f1ecd7978159f No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://chromium-review.googlesource.com/777808Reviewed-by:
Aleks Totic <atotic@chromium.org> Commit-Queue: Aleks Totic <atotic@chromium.org> Cr-Commit-Position: refs/heads/master@{#517725}
-
- 18 Nov, 2017 38 commits
-
-
Mohamad Ahmadi authored
Bug: 738938 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I75950dc5af48af4dcb8b26db9c093cc8837034fd Reviewed-on: https://chromium-review.googlesource.com/776035 Commit-Queue: Moe Ahmadi (OOO until Nov. 27) <mahmadi@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Cr-Commit-Position: refs/heads/master@{#517724}
-
Yuta Kitamura authored
This is a reland of d9e35229 Original change's description: > Move out threading DCHECK from WTF::Function. > > This patch is largely based on tzik's WIP patch: > https://chromium-review.googlesource.com/c/chromium/src/+/742824 > > Bug: 771087 > Change-Id: I20e2eb5ef09911a19e3b268e45ce6187d8edeffa > Reviewed-on: https://chromium-review.googlesource.com/765749 > Commit-Queue: Yuta Kitamura <yutak@chromium.org> > Reviewed-by: Kentaro Hara <haraken@chromium.org> > Reviewed-by: Taiju Tsuiki <tzik@chromium.org> > Cr-Commit-Position: refs/heads/master@{#517030} Bug: 771087 Change-Id: I15731f6d91447796c7082d42ff9d979c9b4e40a3 Reviewed-on: https://chromium-review.googlesource.com/778219Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Yuta Kitamura <yutak@chromium.org> Cr-Commit-Position: refs/heads/master@{#517723}
-
Peter Laurens authored
This tools menu constants header file is moving to a public folder, but has downstream dependencies. This change provides for both the new and old path to reach the header. Bug: 782936 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: Ia6de01254c025940c827e94216ce09ac82139c64 Reviewed-on: https://chromium-review.googlesource.com/772785Reviewed-by:
Sergio Collazos <sczs@chromium.org> Commit-Queue: Peter Laurens <peterlaurens@chromium.org> Cr-Commit-Position: refs/heads/master@{#517722}
-
John Budorick authored
This reverts commit a8671260. TBR=katydek@google.com,dmazzoni@chromium.org Bug: 786621 Change-Id: I5429cafee92658626e826dd998404c3edc25918f Reviewed-on: https://chromium-review.googlesource.com/778131Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#517721}
-
Hans Wennborg authored
This reverts commit cb2b13fb. Reason for revert: It broke the build due to an enhanced warning, e.g. https://build.chromium.org/p/chromium.chrome/builders/Google%20Chrome%20Linux%20x64/builds/24153 ../../third_party/ffmpeg/libavcodec/bitstream.c:169:5: error: if statement has empty body [-Werror,-Wempty-body] ff_dlog(NULL, "new table index=%d size=%d\n", table_index, table_size); ^ ../../third_party/ffmpeg/libavutil/internal.h:276:80: note: expanded from macro 'ff_dlog' # define ff_dlog(ctx, ...) do { if (0) av_log(ctx, AV_LOG_DEBUG, __VA_ARGS__); } while (0) I believe this is fixed in a later revision of Clang that our ToT bots had already picked up, which is why I didn't see it. Original change's description: > Roll clang 317263:318575. > > Bug: 782281 > > Change-Id: Ifad82da68a7356bd6463fd9b944f796a5a3f798c > Reviewed-on: https://chromium-review.googlesource.com/777640 > Reviewed-by: Peter Collingbourne <pcc@chromium.org> > Commit-Queue: Hans Wennborg <hans@chromium.org> > Cr-Commit-Position: refs/heads/master@{#517719} TBR=eugenis@chromium.org,hans@chromium.org,rnk@chromium.org,pcc@chromium.org Change-Id: I922f3b1f30b7119fa17d257a1ab29339ac8576ee No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 782281 Reviewed-on: https://chromium-review.googlesource.com/778281Reviewed-by:
Hans Wennborg <hans@chromium.org> Commit-Queue: Hans Wennborg <hans@chromium.org> Cr-Commit-Position: refs/heads/master@{#517720}
-
Hans Wennborg authored
Bug: 782281 Change-Id: Ifad82da68a7356bd6463fd9b944f796a5a3f798c Reviewed-on: https://chromium-review.googlesource.com/777640Reviewed-by:
Peter Collingbourne <pcc@chromium.org> Commit-Queue: Hans Wennborg <hans@chromium.org> Cr-Commit-Position: refs/heads/master@{#517719}
-
Bruce Dawson authored
This reverts commit ab3de2ef. Reason for revert: ODR violation - content::SessionStorageNamespace already exists. Original change's description: > [SessionStorage] Renderer piping & browser stubs for mojofication. > > This change adds a feature flag and the piping to hook up & run a mojo > implementation of SessionStorage. Nothing is implemented yet and all > calls trip a NOTREACHED - this is just the setup for the renderer side > of the feature. > > Bug: 716490 > Change-Id: Id3ad5cf3fa1e27bf7e5ef9369818d94a1a5364d3 > Reviewed-on: https://chromium-review.googlesource.com/767287 > Reviewed-by: Oliver Chang <ochang@chromium.org> > Reviewed-by: John Abd-El-Malek <jam@chromium.org> > Reviewed-by: Marijn Kruisselbrink <mek@chromium.org> > Commit-Queue: Daniel Murphy <dmurph@chromium.org> > Cr-Commit-Position: refs/heads/master@{#517619} TBR=dmurph@chromium.org,jam@chromium.org,mek@chromium.org,ochang@chromium.org Change-Id: I51f09c1bc483ec16e3ae038d9117523c788b9442 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 716490 Reviewed-on: https://chromium-review.googlesource.com/777411Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Cr-Commit-Position: refs/heads/master@{#517718}
-
Jamie Madill authored
Disables breaking tests on Mac and Windows 7. TBR=kbr@chromium.org Bug: 786716, 786717 Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I7b547ea97bf357fcce0da4d0e0ff949a78f9565c Reviewed-on: https://chromium-review.googlesource.com/778280 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by:
Jamie Madill <jmadill@chromium.org> Cr-Commit-Position: refs/heads/master@{#517717}
-
depot-tools-roller@chromium.org authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/8762632eb725..ddfead3483f2 $ git log 8762632eb..ddfead348 --date=short --no-merges --format='%ad %ae %s' 2017-11-15 tandrii bot_update: mooore refactor around _git_checkout. 2017-11-17 tandrii bot_update: don't crash badly if there no json outpot. Created with: roll-dep src/third_party/depot_tools The AutoRoll server is located here: https://depot-tools-chromium-roll.skia.org 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=phajdan.jr@chromium.org Change-Id: I95f5fc922b282569e6e551a5b66923383d1d0daa Reviewed-on: https://chromium-review.googlesource.com/777486Reviewed-by:
depot-tools-roller . <depot-tools-roller@chromium.org> Commit-Queue: depot-tools-roller . <depot-tools-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517716}
-
Carlos Knippschild authored
Bug: Change-Id: I41728ba1b17d5020178f7adac7997cc2f0662dbc Reviewed-on: https://chromium-review.googlesource.com/777035Reviewed-by:
Justin Schuh <jschuh@chromium.org> Commit-Queue: Justin Schuh <jschuh@chromium.org> Cr-Commit-Position: refs/heads/master@{#517715}
-
Florin Malita authored
TraversalChildrenIterator starts off with TraversalNext::FirstWithin(). But FirstWithin() returns the first matching *descendant* -- which is incorrect for typed iterators. Use FirstChild() explicitly instead, to limit the iterator to children. Change-Id: I1dd78f6cc4e508f7d46e2fd0493249952acbb07f Reviewed-on: https://chromium-review.googlesource.com/775867 Commit-Queue: Florin Malita <fmalita@chromium.org> Reviewed-by:
Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#517714}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/c622833c5a01..90ed1e4971ae $ git log c622833c5..90ed1e497 --date=short --no-merges --format='%ad %ae %s' 2017-11-17 jmadill Reland "Clean up the TType class." Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org 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=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=ynovikov@chromium.org Change-Id: I1c2664af762ecd0a479b3dc89b33fa3b37817425 Reviewed-on: https://chromium-review.googlesource.com/777718Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517713}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/f5beefd34df7..df8408836be0 $ git log f5beefd34..df8408836 --date=short --no-merges --format='%ad %ae %s' 2017-11-18 angle-deps-roller Roll skia/third_party/externals/angle2/ 758bc6a90..c622833c5 (1 commit) 2017-11-18 angle-deps-roller Roll skia/third_party/externals/angle2/ 3f286cd1b..758bc6a90 (1 commit) 2017-11-17 angle-deps-roller Roll skia/third_party/externals/angle2/ 3d70ca9cc..3f286cd1b (1 commit) Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=brianosman@chromium.org Change-Id: I9c3e3f155771f13a219bb944673c4dfa4880095c Reviewed-on: https://chromium-review.googlesource.com/778103Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517712}
-
chaopeng authored
This issue is caused by AutoscrollForSelection call UpdateSelectionForMouseDrag may cancel auto scroll by layout. In this patch we check auto scroll state before schedule animation. Bug: 781455 Change-Id: I904ae86aaaa4694a5ce56f9daca7daf778d8a6c8 Reviewed-on: https://chromium-review.googlesource.com/776622 Commit-Queue: Jianpeng Chao <chaopeng@chromium.org> Reviewed-by:
David Bokan <bokan@chromium.org> Cr-Commit-Position: refs/heads/master@{#517711}
-
Alexander Alekseev authored
This Cl adds support for fine-grained time zone detection to settings UI. Bug: 721578 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I2788dc9681451dd3abcb95b647866132d67c87c6 Reviewed-on: https://chromium-review.googlesource.com/768471 Commit-Queue: Alexander Alekseev <alemate@chromium.org> Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Cr-Commit-Position: refs/heads/master@{#517710}
-
Dale Curtis authored
This change enables AV_EF_EXPLODE such that all serious errors encountered during demuxing are fatal. Previously ffmpeg would try to ignore these in some cases; leading to ubsan or other issues. Specifically crbug.com/698524 and crbug.com/710791. Due to the removal of the speex parser from ogg, there is one test that needs updating with the roll too. https://chromium.googlesource.com/chromium/third_party/ffmpeg.git/+log/1e816bccb5ff..252244150ad7 $ git log 1e816bccb..252244150 --date=short --no-merges --format='%ad %ae %s' 2017-11-17 dalecurtis [mpeg4video] Fix undefined shift on assumed 8-bit input. 2017-11-17 dalecurtis Disable unused ogg codec parsers; they have bugs we don't care about. 2017-11-17 dalecurtis Use ff_thread_once for fixed, float table init. 2017-11-17 dalecurtis Fixup some patches messages. 2017-11-17 dalecurtis [mov] Fix leak of frame_duration_buffer in mov_fix_index(). 2017-11-17 dalecurtis Prevent undefined shift with wrap_bits >= 63. 2017-11-15 hubbe avformat/mov: Check size of STSC allocation 2017-11-17 jstebbins [PATCH] lavf/mov: don't read outside frag_index bounds Created with: roll-dep src/third_party/ffmpeg BUG=786269,782074,783459,784159,654612,779924,710791,698524 TEST=security test cases no longer fail. Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: Ibbf3c32080705d6484682351a351663c51a7f752 Reviewed-on: https://chromium-review.googlesource.com/777408 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
Dan Sanders <sandersd@chromium.org> Cr-Commit-Position: refs/heads/master@{#517709}
-
Victor Vasiliev authored
Add a feature to QuicConnection in which it sends probing retransmissions whenever it becomes application limited. This also corrects the BBR behavior for determining when to probe. Merge internal change: 174041573 R=rch@chromium.org Bug: Change-Id: I7bdc95af25d83da37ad10f167da33a92fa991f2a Reviewed-on: https://chromium-review.googlesource.com/777589Reviewed-by:
Ryan Hamilton <rch@chromium.org> Commit-Queue: Victor Vasiliev <vasilvv@chromium.org> Cr-Commit-Position: refs/heads/master@{#517708}
-
Emily Stark authored
When processing an Expect-CT header, we send a report if it's received over a non-compliant connection. An old build shouldn't be considered non-compliant in this check: we're only interested in notifying site owners about server-side misconfigurations that cause non-compliance. Bug: 786563 Cq-Include-Trybots: master.tryserver.chromium.android:android_cronet_tester;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Id9cf7941325fee1b58f15dc6b1a033ae1bf5471d Reviewed-on: https://chromium-review.googlesource.com/777883 Commit-Queue: Emily Stark <estark@chromium.org> Reviewed-by:
Matt Mueller <mattm@chromium.org> Cr-Commit-Position: refs/heads/master@{#517707}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e3ddaa1b..49b87e46 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I54590042c7b0959ab4d3b5827c635b9ab6783046 Reviewed-on: https://chromium-review.googlesource.com/778139Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#517706}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/758bc6a90b67..c622833c5a01 $ git log 758bc6a90..c622833c5 --date=short --no-merges --format='%ad %ae %s' 2017-11-16 jiawei.shao Re-enable SimpleStateChangeTest.RedefineBufferInUse on Win/Intel Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org 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=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=ynovikov@chromium.org Change-Id: I958431dc4f250a09c88222678cc9d44043485b79 Reviewed-on: https://chromium-review.googlesource.com/778101Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517705}
-
Sadrul Habib Chowdhury authored
Renderer needs to talk to the browser if browser is hosting viz, even when running with mus. So make sure renderer talks to the right process for viz-related communication. BUG=786453 Change-Id: I3561d9f1d8ae14bc35a34125fd55df773afeeca1 Reviewed-on: https://chromium-review.googlesource.com/777439 Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Fady Samuel <fsamuel@chromium.org> Cr-Commit-Position: refs/heads/master@{#517704}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 0598d65f. With Chromium commits locally applied on WPT: 23705631 "service worker: Upstream sandboxed iframe test to WPT." Build: https://build.chromium.org/p/chromium.infra.cron/builders/wpt-importer/builds/5391 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 Directory owners for changes in this CL: domenic@chromium.org, ricea@chromium.org, tyoshino@chromium.org: external/wpt/streams eroman@chromium.org, rsleevi@chromium.org: external/wpt/WebCryptoAPI TBR=lukebjerring No-Export: true Change-Id: Ibad768af8e96681edddac88dbb638f0ca2056e0c Reviewed-on: https://chromium-review.googlesource.com/777921 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517703}
-
Victor Miura authored
This is a reland of 56eadad0 Original change's description: > gpu scheduler: Compute stream priorities based on priority of waiters. > > Previously, a stream tracked all of it's fences that had waiting streams > in 'release_fences'. If 'release_fences' was non-empty, the stream's > priority got bumped up to High. This means a stream with Normal priority > waiting on Low priority stream could bump that stream up to High priority. > > This change removes that tracking, and instead keeps count of the number > of waiting streams at each StreamPriority. The highest priority with non- > zero count becomes the stream's priority. > > When a stream changes priority, it recursively propagates it's new priority > to all streams it's waiting on. > > BUG=781585 > > Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel > Change-Id: I1fc96f6ca065a8e1f83ddaa61ae4f9725c324bcb > Reviewed-on: https://chromium-review.googlesource.com/754415 > Commit-Queue: Victor Miura <vmiura@chromium.org> > Reviewed-by: Sunny Sachanandani <sunnyps@chromium.org> > Reviewed-by: Antoine Labour <piman@chromium.org> > Cr-Commit-Position: refs/heads/master@{#515097} Bug: 781585 Change-Id: I67055fe2887a8ffcc8032af32ab221a3d66bedac Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Reviewed-on: https://chromium-review.googlesource.com/762145 Commit-Queue: Victor Miura <vmiura@chromium.org> Reviewed-by:
Sunny Sachanandani <sunnyps@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Cr-Commit-Position: refs/heads/master@{#517702}
-
Stephen McGruer authored
This CL implements most of the getKeyframes() algorithm from the web-animations spec[0]. There are a few deviations from the spec: * We always include the 'composite' property. This is because we don't yet track the general composite operation for the KeyframeEffect, so cannot tell when a Keyframe has the same operation. * Shorthand CSS properties in the input keyframe argument will have been expanded to longhand properties in getKeyframes(). This is because we improperly expand shorthand properties when creating a StringKeyframe. Despite the deviations this implementation allows us to pass >40 additional WPT tests. It also makes the failure reasons for many more tests explicit, as they no longer just fail on "getKeyframes doesn't exist". [0]: http://w3c.github.io/web-animations/#dom-keyframeeffectreadonly-getkeyframes Bug: 777971 Change-Id: I80cf62bc0121b946b1bf896890e96afd27437057 Reviewed-on: https://chromium-review.googlesource.com/758921Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
Robert Flack <flackr@chromium.org> Reviewed-by:
Xida Chen <xidachen@chromium.org> Commit-Queue: Stephen McGruer <smcgruer@chromium.org> Cr-Commit-Position: refs/heads/master@{#517701}
-
depot-tools-roller@chromium.org authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/276e0454b797..8762632eb725 $ git log 276e0454b..8762632eb --date=short --no-merges --format='%ad %ae %s' 2017-11-17 tandrii Reland "bot_update: make --output_json required in script invocation." Created with: roll-dep src/third_party/depot_tools The AutoRoll server is located here: https://depot-tools-chromium-roll.skia.org 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=phajdan.jr@chromium.org Change-Id: Icbf9290a52ae3f54007b02947701c1cbb9afc6e9 Reviewed-on: https://chromium-review.googlesource.com/777944Reviewed-by:
depot-tools-roller . <depot-tools-roller@chromium.org> Commit-Queue: depot-tools-roller . <depot-tools-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517700}
-
Liquan (Max) Gu authored
Before we extend the custom user timing from performance.measure(), we want to count the usages of start-mark/end-mark being an object in performance.measure(), and identify references to navigationTiming strings, to predict how much the custom user timing will impact the current user cases. Bug: 783960 Change-Id: Id4f5cf5a6dc05eeb150c0a9cdc4f13a43dbb820c Reviewed-on: https://chromium-review.googlesource.com/769932Reviewed-by:
Jesse Doherty <jwd@chromium.org> Reviewed-by:
Yuta Kitamura <yutak@chromium.org> Reviewed-by:
Timothy Dresser <tdresser@chromium.org> Commit-Queue: Liquan Gu <maxlg@chromium.org> Cr-Commit-Position: refs/heads/master@{#517699}
-
chrome-release-bot authored
TBR=govind@chromium.org Change-Id: Iab9bd0c975a83575a639dc4d95c86ed8cd67599f Reviewed-on: https://chromium-review.googlesource.com/777594Reviewed-by:
chrome-release-bot@chromium.org <chrome-release-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#517698}
-
Pavel Feldman authored
This change does not change the semantics, only plumbs the token through the constructor instead of a separate setter. Change-Id: I85151adfb4fe3817954f85517ccc8d2ccdc1de38 Bug: 783506 Reviewed-on: https://chromium-review.googlesource.com/764554 Commit-Queue: Pavel Feldman <pfeldman@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#517697}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/3f286cd1b6e2..758bc6a90b67 $ git log 3f286cd1b..758bc6a90 --date=short --no-merges --format='%ad %ae %s' 2017-11-18 zmo Revert "Clean up the TType class." Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org 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=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=ynovikov@chromium.org Change-Id: I44211c7cc5274c9fd30bdaac2694465ac21fcc11 Reviewed-on: https://chromium-review.googlesource.com/777990Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#517696}
-
Kenneth Russell authored
Forgot this the first time around. BUG=786572 TBR=dpranke@chromium.org NOTRY=true Change-Id: I24cd1a3053e80a7e661f92f26d01011a6cf0bddb Reviewed-on: https://chromium-review.googlesource.com/777853Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#517695}
-
Benjamin C. Wiley Sittler authored
Bug: 786539 Bug: 661819 Change-Id: I26167fe8cf6f5959420d15fbed9e49a118f445b7 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Reviewed-on: https://chromium-review.googlesource.com/778019 Commit-Queue: Benjamin Wiley Sittler <bsittler@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Reviewed-by:
Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#517694}
-
Kenneth Russell authored
The driver is generating GL_OUT_OF_MEMORY errors when it's used. Stop exposing it to the application level. BUG=702980 NOTRY=true Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I5d3ec20941ce0d032f37293db71926347a1652aa Reviewed-on: https://chromium-review.googlesource.com/777982 Commit-Queue: Kenneth Russell <kbr@chromium.org> Reviewed-by:
Zhenyao Mo <zmo@chromium.org> Cr-Commit-Position: refs/heads/master@{#517693}
-
Rachel Blum authored
The spellcheck panel on OSX can be invoked via two editor commands: ToggleSpellPanel, and showGuessPanel. It used to be that one was invoked as an EditorCommand with no parameter, and the second as a command with empty string as parameter. This changed at some point. As an additional hurdle, editor commands without a parameter also get a capital letter as initial (mandatory). The fix here removes the invokation via the selector name - a.k.a. showGuessPanel - and renames that to ToggleSpellPanel. It does *not* address the issue of two separate invokation paths. (That is a follow-up CL, since it might require rollback) BUG=781971 Change-Id: I2023c5d3b91f491706ea2401c9cd03dbd87ae71e Reviewed-on: https://chromium-review.googlesource.com/759658Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Commit-Queue: Rachel Blum <groby@chromium.org> Cr-Commit-Position: refs/heads/master@{#517692}
-
Erik Luo authored
Console's custom copy handler tries to determine the selected text on its own. In some cases, the browser's default copy handler offers much better behavior: - Include styles and colors - Include table indentation that can be pasted into spreadsheet editors - Account for text selections across shadow boundaries Bug: 673746, 697149, 649828 Change-Id: I4b5e3a225234e28fe84197a73f655af9c4c9f418 Reviewed-on: https://chromium-review.googlesource.com/773462 Commit-Queue: Erik Luo <luoe@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#517691}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e6c939ba..e3ddaa1b Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I20266ea140ef06b25c58c103c06e7b24cde0fed5 Reviewed-on: https://chromium-review.googlesource.com/777999Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#517690}
-
Nathan Bruer authored
In the event that a url once encoded is more than 200 characters we will do partial hashing to it in order to ensure it plays well with operating systems like windows which only supports ~255 character total length paths. R=lushnikov BUG=754371 Change-Id: I6120ad13bff71a4933dd38088b81ecf480771360 Reviewed-on: https://chromium-review.googlesource.com/777602 Commit-Queue: Blaise Bruer <allada@chromium.org> Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#517689}
-
Varun Khaneja authored
TBR=asvitkine Bug: 754336 Change-Id: I316e03853095b49dc9da6d6d19fccfd9cefb7bf5 Reviewed-on: https://chromium-review.googlesource.com/773505 Commit-Queue: Varun Khaneja <vakh@chromium.org> Reviewed-by:
Nathan Parker <nparker@chromium.org> Cr-Commit-Position: refs/heads/master@{#517688}
-
James Cook authored
It's flaky under --mash. Bug: none Test: browser_tests --mash with filter file Change-Id: Icdb071cd350f07f0b176d7a9ff1496d3700329d5 Reviewed-on: https://chromium-review.googlesource.com/778123Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#517687}
-