- 03 Sep, 2018 40 commits
 - 
- 
skia-chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/2c55d8f5eeb0..24e58341fbcd git log 2c55d8f5eeb0..24e58341fbcd --date=short --no-merges --format='%ad %ae %s' 2018-09-03 reed@google.com check if stream failed Created with: gclient setdep -r src/third_party/skia@24e58341fbcd 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=master.tryserver.blink:linux_trusty_blink_rel;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=jvanverth@chromium.org Change-Id: I0bcb6272306c9ba2f2e2e4a270a4a298083c382c Reviewed-on: https://chromium-review.googlesource.com/1203390Reviewed-by:
skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588437}
 - 
Victor Costan authored
This CL only handles the files in //components. The files in //net were tackled in https://crrev.com/c/1188959. Parallel CLs will tackle other directories. net::IOBuffer is (thread-safe) ref-counted. Asides from improving the ability to reason about instance ownership locally, creating instances via base::MakeRefCounted makes it possible to use 1-based ref-counting in the future (see base/memory/ref_counted.h). This CL is mechanical, to avoid introducing any behavior changes. The difficult cases will be tackled by follow-up CLs. The following transformations were performed. * new IOBufferType(args) => base::MakeRefCounted<IOBufferType>(args) * new IOBufferType => base::MakeRefCounted<IOBufferType>() * scoped_refptr x(base::MakeRefCounted<IOBufferType>(args)) => scoped_refptr x = base::MakeRefCounted<IOBufferType>(args) * scoped_refptr<IOBufferType>(base::MakeRefCounted<IOBufferType>(args)) => base::MakeRefCounted<IOBufferType>(args) * In comments: creates a new IOBufferType => creates an IOBufferType (so it wouldn't trigger future searches for "new BufferType") * Instantiated static members in HttpResponseBodyDrainer, HttpNetworkTransaction, HttpProxyClientSocket, WritersTest, UDPSocketTest, TestDelegate, UDPSocketPerfTest (needed to fix linker errors) * arraysize -> base::size (where needed to pass presubmit checks) * git cl format Cq-Include-Trybots: luci.chromium.try:ios-simulator-cronet;master.tryserver.chromium.android:android_cronet_tester Change-Id: If70c6373def9a2b46561af5c5ff7de55027d44fa Reviewed-on: https://chromium-review.googlesource.com/1200415Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#588436}
 - 
Chromium WPT Sync authored
Using wpt-import in Chromium 0a598ade. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/24020 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: tdresser@chromium.org: external/wpt/hr-time NOAUTOREVERT=true TBR=foolip No-Export: true Change-Id: Iedc66e95b50ef2b475dd412e3c9dd225b4fd6c7a Reviewed-on: https://chromium-review.googlesource.com/1203311 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@{#588435}
 - 
skia-chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/bf67741140fd..2c55d8f5eeb0 git log bf67741140fd..2c55d8f5eeb0 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 angle-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll third_party/externals/angle2 9808d38c032a..fda46aa50ecb (7 commits) Created with: gclient setdep -r src/third_party/skia@2c55d8f5eeb0 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=master.tryserver.blink:linux_trusty_blink_rel;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=jvanverth@chromium.org Change-Id: I070f0d19e03082715971d2f236644e50655effb2 Reviewed-on: https://chromium-review.googlesource.com/1203190Reviewed-by:
skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588434}
 - 
Joel Hockey authored
Calls fileManagerPrivate.sharePathWithCrostiniContainer to share directory. Bug: 878324 Change-Id: Id0e75173b8650c21866fb1903171efa44be06a2c Reviewed-on: https://chromium-review.googlesource.com/1195406 Commit-Queue: Joel Hockey <joelhockey@chromium.org> Reviewed-by:
Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/heads/master@{#588433}
 - 
angle-chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/0a17e484912d..a792193e17c4 git log 0a17e484912d..a792193e17c4 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 jmadill@chromium.org Vulkan: Enable StateChangeTest.DisablingBufferedVertexAttribute. 2018-09-03 jmadill@chromium.org Vulkan: More micro-optimizations to setupDraw. 2018-09-03 jmadill@chromium.org Vulkan: Enable UniformTest.Sampler. 2018-09-03 jmadill@chromium.org Vulkan: Enable GLSLTest.ScopedStructsOrderBug. 2018-09-03 jmadill@chromium.org Vulkan: Enable BindUniformLocationTest.Compositor. 2018-09-03 jmadill@chromium.org Vulkan: Enable TextureLimitsTest. 2018-09-03 jmadill@chromium.org Vulkan: Enable a dEQP point raster test. 2018-09-03 jmadill@chromium.org Vulkan: Optimize ContextVk::setupDraw. 2018-09-03 jmadill@chromium.org Vulkan: Fix line width caps. Created with: gclient setdep -r src/third_party/angle@a792193e17c4 The AutoRoll server is located here: https://autoroll.skia.org/r/angle-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 BUG=chromium:None TBR=fjhenigman@chromium.org Change-Id: Id7bba62080d42d5c87231736c09356b4f03b003d Reviewed-on: https://chromium-review.googlesource.com/1203230Reviewed-by:
angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588432}
 - 
Morten Stenshorne authored
TBR=futhark@chromium.org Bug: 880084 Change-Id: If147343bb7be38ccdddd3f46cc84d1b529b213ae Reviewed-on: https://chromium-review.googlesource.com/1203250Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#588431}
 - 
Sergey Ulanov authored
Several fixes for P2P sockets: 1. P2PSocketTcpBase no longer posts tasks with base::Unretained(). 2. Previously P2P sockets were destroyed only in response to Mojo interfaces errors. They were not destroyed on other error. Fixed it now. 3. Simplified TCP server socket protocol. Now the accepted socket is passed directly in IncomingTcpConnection. 4. Updated unittests to verify that P2P sockets are destroyed in response to errors. 5. Other minor cleanups, particularly moved packet dump logic to SocketManager and removed some unittests that are not relevant after migration to mojo. Bug: 877515, 877514 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I55276e372185c558667289a1efdfcf0421c3d7bc Reviewed-on: https://chromium-review.googlesource.com/1189083Reviewed-by:Nasko Oskov <nasko@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#588430}
 - 
Gang Wu authored
Specifics: +632,203 bytes normalized apk size +3 zip entries file count +37,552 bytes main lib size +403,492 bytes main dex size InstallSize: +230,325 bytes APK size +1,860,432.68 bytes Estimated installed size InstallBreakdown (+1,859,389.68 bytes): +1,614 bytes unwind_cfi (dev and canary only) size +1,426 bytes Non-compiled Android resources size +37,552 bytes Native code size +168 bytes Package metadata size +1,803,953.68 bytes Java code size +14,676 bytes Compiled Android resources size Dex: +1,987 entries fields +2,702 entries methods +643 entries types +1,348 entries strings Change-Id: Icebd69d4de6cd19ec0e44aae21650caaa9359e6c Reviewed-on: https://chromium-review.googlesource.com/1200623 Commit-Queue: Filip Gorski <fgorski@chromium.org> Reviewed-by:Filip Gorski <fgorski@chromium.org> Cr-Commit-Position: refs/heads/master@{#588429}
 - 
Anna Malova authored
Bug: 852794 Change-Id: I0f1cb2fd08e820f6eb389bb9e0d07f1f7bab78c8 Reviewed-on: https://chromium-review.googlesource.com/1102678Reviewed-by:
Bernhard Bauer <bauerb@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#588428}
 - 
Fredrik Söderquist authored
To match ElementRuleCollector et al. We will lower-case tag names on (selector) parsing in HTML documents, and thus need to give the same treatment to the local name extracted from the element. Bug: 856368 Change-Id: I07e726864de048f5948cb27fa7e5dd6eaad9b0ef Reviewed-on: https://chromium-review.googlesource.com/1202206 Commit-Queue: Fredrik Söderquist <fs@opera.com> Reviewed-by:
Rune Lillesveen <futhark@chromium.org> Cr-Commit-Position: refs/heads/master@{#588427}
 - 
Michael Lippautz authored
Add a unified garbage collection that replaces wrapper tracing with a full marking pass across both V8 and Blink. The garbage collection is implemented behind the flag 'HeapUnifiedGarbageCollection'. Unified heap garbage collections are triggered by V8 and mark the full transitive closure of V8 and Blink (Oilpan) objects. The garbage collection is initially triggered by V8. Both collecters report live references using the EmbedderHeapTracer APIs. V8 and Blink both run separate incremental marking steps to compute their live closures, respectively. The final atomic pause is then initiated by V8 and triggers a fixed-point computation between V8 and Blink where both GCs report live references to each other and drain their marking work lists until they are empty and no new references are found. Bug: chromium:843903 Change-Id: I5968ba782a37b29604748793645910fa4c5129cf Reviewed-on: https://chromium-review.googlesource.com/1133166 Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#588426}
 - 
Jeremy Roman authored
There are no uses of TimedWait in Blink, so it is removed altogether. Bug: 856641 Change-Id: I3fa1dad9374a2600decddad18f80bf47f00b7b78 Reviewed-on: https://chromium-review.googlesource.com/1199933Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#588425}
 - 
John Chen authored
Disable four ChromeOptionsFunctionalTest test cases that are failing on ChromeDriver waterfall. TBR=crouleau@chromium.org Bug: chromedriver:2572 Change-Id: I68c38fcb955cffe34c6b934372a09816fe9fca9a Reviewed-on: https://chromium-review.googlesource.com/1203170Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: John Chen <johnchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#588424}
 - 
angle-chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/9808d38c032a..0a17e484912d git log 9808d38c032a..0a17e484912d --date=short --no-merges --format='%ad %ae %s' 2018-09-03 jmadill@chromium.org Vulkan: Fix sync of initially disabled attributes. Created with: gclient setdep -r src/third_party/angle@0a17e484912d The AutoRoll server is located here: https://autoroll.skia.org/r/angle-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=fjhenigman@chromium.org Change-Id: I7878652e05bb0c41f14f726163c0c4bbe4a94066 Reviewed-on: https://chromium-review.googlesource.com/1202507Reviewed-by:
angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588423}
 - 
skia-chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/88119de2b849..bf67741140fd git log 88119de2b849..bf67741140fd --date=short --no-merges --format='%ad %ae %s' 2018-09-03 reed@google.com add behavior enum to SkTypeface::serialize() Created with: gclient setdep -r src/third_party/skia@bf67741140fd 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=master.tryserver.blink:linux_trusty_blink_rel;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=jvanverth@chromium.org Change-Id: Ia65e750a5833f3cca29f4141fd1d356c042793ca Reviewed-on: https://chromium-review.googlesource.com/1202508Reviewed-by:
skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588422}
 - 
Egor Pasko authored
Recently the start_with_url.{cold,warm}.startup_pages became flaky and were disabled. The unfortunate consequence is that the corresponding dashboard graphs are going silent. The experimental.mobile.startup benchmark has already bare minimum functionality to start running on bots (WPR support, meaningful results for cold startup with intent). Some data is better than no data at all. Rename 'experimental.startup.mobile' to 'startup.mobile'. Enabling the runs on bots will be done separately. Bug: 760498 Cq-Include-Trybots: master.tryserver.chromium.perf:obbs_fyi Change-Id: Ia6ffb71a4b20d8969c5bef9febd3c5d8e04a82ff Reviewed-on: https://chromium-review.googlesource.com/1202665Reviewed-by:Ned Nguyen <nednguyen@google.com> Commit-Queue: Egor Pasko <pasko@chromium.org> Cr-Commit-Position: refs/heads/master@{#588421}
 - 
Andrey Lushnikov authored
This is becoming very painful bug for puppeteer given that Chromium 70 distrusted symantec certificates. It already works with NetworkService codepath; this patch adds the missing logic for non-network-service world. R=caseq, dgozman Bug: 801426 Change-Id: I5f9d88aa3e6c859626486965b9b1801a4728a8e0 Reviewed-on: https://chromium-review.googlesource.com/1202662Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Commit-Queue: Andrey Lushnikov <lushnikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#588420}
 - 
yusukes authored
BUG=879365,845079 TEST=Sign in, enter tablet mode, install gboard, enable gboard, use it, enter laptop mode, enter tablet mode again, use gboard, confirm the IME confirmation dialog is not shown. Change-Id: I8eb9ca17433f79fd76e7c471bb6c7929cad68150 Reviewed-on: https://chromium-review.googlesource.com/1199501Reviewed-by:
Yuichiro Hanada <yhanada@chromium.org> Commit-Queue: Yusuke Sato <yusukes@chromium.org> Cr-Commit-Position: refs/heads/master@{#588419}
 - 
Chromium WPT Sync authored
Using wpt-import in Chromium 2acb4c44. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/24017 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: I491033885e05432a35f5d6b00e3ef364c6c4ce44 Reviewed-on: https://chromium-review.googlesource.com/1202683 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@{#588418}
 - 
webrtc-chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/1beef1a97aa7..4e5af96606b9 git log 1beef1a97aa7..4e5af96606b9 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 andersc@webrtc.org Include i420 buffers in Obj-C framework again. 2018-09-03 srte@webrtc.org Adds % unit to float field trial parser. 2018-09-03 aleloi@webrtc.org Echo metric support for the APM-QA. 2018-09-03 brandtr@webrtc.org Add field trial for disabling FrameDropper. 2018-09-03 brandtr@webrtc.org Remove unused MockFrameDropper and make FrameDropper non-virtual. 2018-09-03 ilnik@webrtc.org Remove obsolete field trial from the tests Created with: gclient setdep -r src/third_party/webrtc@4e5af96606b9 The AutoRoll server is located here: https://autoroll.skia.org/r/webrtc-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:linux_chromium_archive_rel_ng;luci.chromium.try:mac_chromium_archive_rel_ng TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I53ea1b1924bdad6eff923eb4036052bacd4941ef Reviewed-on: https://chromium-review.googlesource.com/1202506Reviewed-by:
webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588417}
 - 
Jeremy Roman authored
It has been superseded by AssertAcquired. Bug: 856641 Change-Id: Iebb6ea251dc4102ec3cb5b2a46f80afeedeb462c Reviewed-on: https://chromium-review.googlesource.com/1201349Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#588416}
 - 
Anna Malova authored
Bug: 878176 Change-Id: I93ccf352800b60caadbc2a20d857d6122e634789 Reviewed-on: https://chromium-review.googlesource.com/1199487Reviewed-by:
Bernhard Bauer <bauerb@chromium.org> Reviewed-by:
Peter Conn <peconn@chromium.org> Commit-Queue: Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#588415}
 - 
perfetto-chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/2d795663ffcc..f98c9d6e3f80 git log 2d795663ffcc..f98c9d6e3f80 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 fmayer@google.com Fix Chromium build. 2018-09-01 primiano@google.com Merge "perfetto-ui: Remove _wasm suffix from js files" 2018-08-31 hjd@google.com perfetto-ui: Narrow CPU tracks 2018-08-30 fmayer@google.com profiling: Add parts of heap profiler. Created with: gclient setdep -r src/third_party/perfetto@f98c9d6e3f80 The AutoRoll server is located here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=perfetto-bugs@google.com Change-Id: Id9e1554617fe493fe0613548496bcd008f1f06cf Reviewed-on: https://chromium-review.googlesource.com/1202505Reviewed-by:
perfetto-chromium-autoroll <perfetto-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: perfetto-chromium-autoroll <perfetto-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588414}
 - 
catapult-chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/713e916190aa..88dc49aaadb0 git log 713e916190aa..88dc49aaadb0 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 pasko@chromium.org devil: Limit CPU/GPU frequency for Nexus 5X 2018-09-03 anthonyalridge@google.com Include testing of significant impacts on a per story basis. 2018-09-03 wangge@google.com Add M70 branch number. Created with: gclient setdep -r src/third_party/catapult@88dc49aaadb0 The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:760498,chromium:383566,chromium:866423,chromium:863390 TBR=sullivan@chromium.org Change-Id: I3249938bc929dcbccb370351dd528c59afe2cccd Reviewed-on: https://chromium-review.googlesource.com/1202504Reviewed-by:
catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588413}
 - 
yusukes authored
BUG=879365,845079 TEST=Enable Gboard in tablet mode, toggle to laptop mode, toggle back to tablet mode, verify Gboard is usable Change-Id: I8a6094b54b93c5c246ca13adfb391450bd85b80f Reviewed-on: https://chromium-review.googlesource.com/1199775Reviewed-by:
Yuichiro Hanada <yhanada@chromium.org> Commit-Queue: Yusuke Sato <yusukes@chromium.org> Cr-Commit-Position: refs/heads/master@{#588412}
 - 
Chromite Chromium Autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/227095125570..b97eba7fb2c0 git log 227095125570..b97eba7fb2c0 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 tikuta@chromium.org lddtree: resolve symlinked compiler path Created with: gclient setdep -r src/third_party/chromite@b97eba7fb2c0 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. TBR=chrome-os-gardeners@chromium.org Change-Id: Iaf56fc429de1fe0c3b75d291751e3404a4b3c702 Reviewed-on: https://chromium-review.googlesource.com/1202503Reviewed-by:
Chromite Chromium Autoroll <chromite-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: Chromite Chromium Autoroll <chromite-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588411}
 - 
Finnur Thorarinsson authored
Bug: 860467 Change-Id: Ia844491c6c1245493e5d1b3521ee53151ae68316 Reviewed-on: https://chromium-review.googlesource.com/1196887 Commit-Queue: Finnur Thorarinsson <finnur@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#588410}
 - 
Ioana Pandele authored
Bug: 880076 Change-Id: Ibd0f57fd3b0199c897a8b28bbf7f7a85f79693ac Reviewed-on: https://chromium-review.googlesource.com/1195503 Commit-Queue: Ioana Pandele <ioanap@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#588409}
 - 
Marc Treib authored
This logic has previously lead to problems in tests, and it's not clear whether it serves any purpose in real life (or whether it might actually cause hard-to-track problems there too). In any case, it's ancient, and not covered by tests. Change-Id: I9c7d0909ce7e6623626cf6f8aaf68c176c184254 Reviewed-on: https://chromium-review.googlesource.com/1169475Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Commit-Queue: Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#588408}
 - 
yusukes authored
This allows c/b/resources/settings/languages_page/languages.js to listen to these IME events. BUG=867795,845079 Change-Id: I99514bc32727b01d7865a18d415f68ca24d1c398 Reviewed-on: https://chromium-review.googlesource.com/1195647 Commit-Queue: Yusuke Sato <yusukes@chromium.org> Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Cr-Commit-Position: refs/heads/master@{#588407}
 - 
webrtc-chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/88c1a9ecbc52..1beef1a97aa7 git log 88c1a9ecbc52..1beef1a97aa7 --date=short --no-merges --format='%ad %ae %s' 2018-09-03 nisse@webrtc.org Delete VideoSendStream::EnableEncodedFrameRecording. 2018-09-03 fippo@andyet.com getStats: add kind alias for mediaType 2018-09-03 ivoc@webrtc.org Restructure neteq_rtpplay into a library with small executable wrapper. Created with: gclient setdep -r src/third_party/webrtc@1beef1a97aa7 The AutoRoll server is located here: https://autoroll.skia.org/r/webrtc-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:linux_chromium_archive_rel_ng;luci.chromium.try:mac_chromium_archive_rel_ng BUG=chromium:None TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: Iaac54d3c9742314d454015faee006d1790452600 Reviewed-on: https://chromium-review.googlesource.com/1202342Reviewed-by:
webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588406}
 - 
chrome://webrtc-logs/Elad Alon authored
Add the sha1 files for the images intended to assist the translation of chrome://webrtc-logs/. Bug: 775415 Change-Id: I15e61b61442bba819132a707ceccd3b59e8f964c Reviewed-on: https://chromium-review.googlesource.com/1202150Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Elad Alon <eladalon@chromium.org> Cr-Commit-Position: refs/heads/master@{#588405}
 - 
chrome://settings/inputMethodsyusukes authored
BUG=867795,845079 TEST=sign in, open chrome://settings/inputMethods, make sure ARC IME is there, toggle tablet mode, verify the IME entry's state is updated. Change-Id: I58b75cdec338f1121b5213637d5a4a0217815a08 Reviewed-on: https://chromium-review.googlesource.com/1196012Reviewed-by:
Yuichiro Hanada <yhanada@chromium.org> Commit-Queue: Yusuke Sato <yusukes@chromium.org> Cr-Commit-Position: refs/heads/master@{#588404}
 - 
catapult-chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/62cb3bce209f..713e916190aa git log 62cb3bce209f..713e916190aa --date=short --no-merges --format='%ad %ae %s' 2018-09-03 anthonyalridge@google.com Improve legends for charts. Created with: gclient setdep -r src/third_party/catapult@713e916190aa The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:866423 TBR=sullivan@chromium.org Change-Id: Idd0f4ae521ae61c146dd32096b0705640fec649d Reviewed-on: https://chromium-review.googlesource.com/1202502Reviewed-by:
catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588403}
 - 
Chromium WPT Sync authored
Using wpt-import in Chromium 4c7acbc2. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/24016 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: jrummell@chromium.org: external/wpt/encrypted-media mstensho@chromium.org: external/wpt/css/css-multicol NOAUTOREVERT=true TBR=foolip No-Export: true Change-Id: Ibf10aade5fc8aec59c4d1bebf6d8c4542ba10a23 Reviewed-on: https://chromium-review.googlesource.com/1201905 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@{#588402}
 - 
Javier Ernesto Flores Robles authored
Bug: 878388 Cq-Include-Trybots: luci.chromium.try:ios-simulator-cronet;luci.chromium.try:ios-simulator-full-configs Change-Id: Ie78d18cd28bda8a4a46d9f8292408764ae53fdf1 Reviewed-on: https://chromium-review.googlesource.com/1199504 Commit-Queue: Javier Ernesto Flores Robles <javierrobles@chromium.org> Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Cr-Commit-Position: refs/heads/master@{#588401}
 - 
Sylvain Defresne authored
Build of ChromeOS running on Linux may share preference with the Linux build of Chrome. Ensure that the migration state is set to MIGRATION_NOT_STARTED on ChromeOS. Bug: 879968 Change-Id: Ifff879198a51555c6a88c5c2a5712160745c64f6 Reviewed-on: https://chromium-review.googlesource.com/1202103Reviewed-by:
David Roger <droger@chromium.org> Commit-Queue: Sylvain Defresne <sdefresne@chromium.org> Cr-Commit-Position: refs/heads/master@{#588400}
 - 
Mohamed Amir Yosef authored
This CL implements BookmarkModelTypeProcessor::OnSyncStopping() and enables a corresponding integration test. Bug: 516866 Change-Id: I1d861f87d6d8f1a0f828592039153a7f04399a2a Reviewed-on: https://chromium-review.googlesource.com/1194030 Commit-Queue: Mohamed Amir Yosef <mamir@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#588399}
 - 
Vasilii Sukhanov authored
Bug: 869872 Change-Id: I82e3497db87cc34549cdc16ea320294590be63f1 Reviewed-on: https://chromium-review.googlesource.com/1202065Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Commit-Queue: Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#588398}
 
 -