- 13 Apr, 2019 40 commits
-
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/aad76fe386c5..869ed03f2b53 Created with: gclient setdep -r src-internal@869ed03f2b53 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: Iffcc0f4198a7bcd49a2df8b301d703f60b87c0a4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565638Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650620}
-
Charlie Reis authored
CL adapted from clamy@'s https://crrev.com/c/1565876. This is a partial revert of r638122 and r642275, plus a new test. This CL fixes a process leak that happens in navigations where the current renderer process is not live (crashed process or NTP). The mechanism is the following: 1) We want to navigate to a page in a FrameTreeNode where the current RFH is not live. This RFH has a SiteInstance with id 1, and a process with id 1. 2) We create a NavigationRequest, which takes as its starting SiteInstance the SiteInstance with id 1. 3) We call into RenderFrameHostManager::GetFrameHostForNavigation. It creates a speculative RFH, with a new SiteInstance with id 2, and a process with id 2. It commits this RFH immediately, since the current one is not live. This has the side effect of deleting process 1, however it does not delete SiteInstance 1 since it is referenced by the NavigationRequest. So SiteInstance 1 ends up associated with no RFH, and has no process either. 4) We create the NavigationHandle and call DidStartNavigation. One of the WebContentsObservers accesses NavigationHandle::GetStartingSiteInstance (which is SiteInstance 1), and asks it for its process (https://cs.chromium.org/chromium/src/chrome/browser/safe_browsing/safe_browsing_navigation_observer.cc?type=cs&q=safe_browsing::SafeBrowsingNavigationObserver::DidStartNavigation&g=0&l=185). Because the SiteInstance no longer has a process, we re-create a process with id 3 due to this call. 5) We finish the navigation and delete the last reference to SiteInstance 1. However, this does not delete process 3, which is not referenced anymore, and we leak the process. To fix the issue, this CL makes sure that the starting SiteInstance is captured just before creating the NavigationHandle, which is after a new RFH has been committed to replace the non-live current RFH. This way, the SiteInstance is properly linked to a RFH and it has a RenderProcessHost. Separately, we can ensure that unused processes will be cleaned up if GetProcess() is called unexpectedly. TBR=clamy@chromium.org TBR=jbudorick@chromium.org Bug: 949977 Change-Id: Ia84e238af0036822dd8c4cd47be5b497d0e7be3d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566643 Commit-Queue: Charlie Reis <creis@chromium.org> Reviewed-by:
Charlie Reis <creis@chromium.org> Cr-Commit-Position: refs/heads/master@{#650619}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/3af5c4c3547b..79e9f4b9c128 git log 3af5c4c3547b..79e9f4b9c128 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 yvesg@webrtc.org Replace test::Statistics by webrtc::RunningStatistics. 2019-04-13 benwright@webrtc.org Remove HKDF implementation from WebRTC. 2019-04-13 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 9ba7465f..8b06d91a (650428:650536) Created with: gclient setdep -r src/third_party/webrtc@79e9f4b9c128 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. BUG=chromium:None TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I2c47a1c8bbc975e1f9ca06aeeccebe81de4f0d1b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565637Reviewed-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@{#650618}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/a15988358bf1..aad76fe386c5 Created with: gclient setdep -r src-internal@aad76fe386c5 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I0234193c618b4125c66d73898339b086d233cc84 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566552Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650617}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/e339d6c04e7b..db4f3dfd1960 git log e339d6c04e7b..db4f3dfd1960 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 bclayton@google.com Revert "SprivShader: Replace hand-rolled bitreverse with LLVM intrinsic" Created with: gclient setdep -r src/third_party/swiftshader@db4f3dfd1960 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@chromium.org Change-Id: I805b69425bba45a22e19156b87c30267b0f30c73 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566553Reviewed-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@{#650616}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/0179e5eb6537..e339d6c04e7b git log 0179e5eb6537..e339d6c04e7b --date=short --no-merges --format='%ad %ae %s' 2019-04-13 bclayton@google.com Revert "SprivShader: Replace hand-rolled bitcount with LLVM intrinsic" Created with: gclient setdep -r src/third_party/swiftshader@e339d6c04e7b The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@chromium.org Change-Id: I27dc1e26c7b4dfd3ff5d626eb76ac4f751162d07 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566551Reviewed-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@{#650615}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/9abaded9b292..a15988358bf1 Created with: gclient setdep -r src-internal@a15988358bf1 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: Ic713b77c3a62176c1b64dde9bb045c07eae6518a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566588Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650614}
-
Darwin Huang authored
Bug: 949453, 950296 Change-Id: I875a580857d8de7557baa40de95e73e0a91689a3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565682 Auto-Submit: Darwin Huang <huangdarwin@chromium.org> Reviewed-by:
Chris Mumford <cmumford@google.com> Commit-Queue: Darwin Huang <huangdarwin@chromium.org> Cr-Commit-Position: refs/heads/master@{#650613}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/487c1028fabb..9abaded9b292 Created with: gclient setdep -r src-internal@9abaded9b292 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I01c606a77076dcaec09933f28ba2d5103ea555cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566586Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650612}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/73832434f8f3..0179e5eb6537 git log 73832434f8f3..0179e5eb6537 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 bclayton@google.com SprivShader: Replace hand-rolled bitcount with LLVM intrinsic 2019-04-13 bclayton@google.com SprivShader: Replace hand-rolled bitreverse with LLVM intrinsic Created with: gclient setdep -r src/third_party/swiftshader@0179e5eb6537 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:b/126873455,chromium:b/126873455 TBR=swiftshader-team+autoroll@chromium.org Change-Id: I5137d2dbfe4dbf9b7c1ed9bc9ec5795e37ff780c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566587Reviewed-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@{#650611}
-
Tao Bai authored
Fix a infinite loop caused by removing session in GetFrameContentCaptureData(). The previous test didn't uncover this issue, because it navigated to different domain, it acutally created new rfh, therefore, new ContentCaptureReceiver. Bug: 951567 Change-Id: Ib18806c23a0eb774ceb0adfd2a11eff52d5cc1a2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565046Reviewed-by:
Changwan Ryu <changwan@chromium.org> Commit-Queue: Tao Bai <michaelbai@chromium.org> Cr-Commit-Position: refs/heads/master@{#650610}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/c789f4d537ae..b614c567e8b3 git log c789f4d537ae..b614c567e8b3 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 benjhayden@chromium.org Migrate cp-dialog to es6 module. Created with: gclient setdep -r src/third_party/catapult@b614c567e8b3 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:950011 TBR=crouleau@chromium.org Change-Id: I4ad6274d050d83f045f261635a9692f211c0dae7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566585Reviewed-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@{#650609}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/1f504bd31cbf..487c1028fabb Created with: gclient setdep -r src-internal@487c1028fabb The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I362a2d41c978ffc2ccb0b3e595929001fd1e5622 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566584Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650608}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/17ecf2a67016..73832434f8f3 git log 17ecf2a67016..73832434f8f3 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 sugoi@google.com Dynamic state implementation Created with: gclient setdep -r src/third_party/swiftshader@73832434f8f3 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@chromium.org Change-Id: I77db1d52c99bfd9b9adb9b445f6ee50611af198c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566583Reviewed-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@{#650607}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/69f54f8f0f22..33233a09fef8 git log 69f54f8f0f22..33233a09fef8 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 herb@google.com Reland "Convert the CPU path case to use prepareForDrawing" Created with: gclient setdep -r src/third_party/skia@33233a09fef8 The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=egdaniel@chromium.org Change-Id: Ie5e6f96ae8af08c4ab50976b65f2a4eb45bca064 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1567017Reviewed-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@{#650606}
-
Frank Tang authored
https://chromium.googlesource.com/chromium/deps/icu.git/+log/4ae7482a..35f7e13 It includes 35f7e13 Update ICU to 64-2-rc ccb314e Fix config_data 85768aa Add 32 more locales for Android (OFF by default) Data size impact is small- just a couple K To test, in v8 see the Japanese Era year change from 2019/4/30 to 2019/5/1 d8> d = new Date(Date.UTC(2019,3,30)) Mon Apr 29 2019 17:00:00 GMT-0700 (Pacific Daylight Time) d8> d.toLocaleDateString("ja-u-ca-japanese", {era: "long", timeZone: "Etc/UTC"}) "平成31年4月30日" d8> d = new Date(Date.UTC(2019,4,1)) Tue Apr 30 2019 17:00:00 GMT-0700 (Pacific Daylight Time) d8> d.toLocaleDateString("ja-u-ca-japanese", {era: "long", timeZone: "Etc/UTC"}) "令和1年5月1日" Test: See above Bug: 952501, 952305, 949885, 949962 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng Change-Id: I7626b48cb8258e3f54690e81d2eb04f1928315d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566724 Commit-Queue: Jungshik Shin <jshin@chromium.org> Reviewed-by:
Jungshik Shin <jshin@chromium.org> Cr-Commit-Position: refs/heads/master@{#650605}
-
chromium-autoroll authored
The AutoRoll server is located here: https://autoroll.skia.org/r/fuchsia-sdk-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:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: Iaa28980cad6aafaff789931cc497bc2128bc100d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1567016Reviewed-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@{#650604}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/424cd978f64d..1f504bd31cbf Created with: gclient setdep -r src-internal@1f504bd31cbf The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: If84d914f34c669af0bfb2b09316708162162e9ae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566949Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650603}
-
Paul Jensen authored
Dedicated thread wastes resources and causes races in tests where it can outlive thread pools used by DnsConfigServicePosix's SerialWorkers. Bug: 938126 Change-Id: Ic85c83d164cc26cb218c7e2a0304810c6e0c3be4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1548052 Commit-Queue: Paul Jensen <pauljensen@chromium.org> Reviewed-by:
Eric Orth <ericorth@chromium.org> Cr-Commit-Position: refs/heads/master@{#650602}
-
Dominik Röttsches authored
This is not shipping yet, more evaluation of this metric is needed. Bug: 945573 Change-Id: Ifa06a6f3cced1358026de155f213ee0f837891ed Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565975 Auto-Submit: Dominik Röttsches <drott@chromium.org> Commit-Queue: Stephen Chenney <schenney@chromium.org> Reviewed-by:
Stephen Chenney <schenney@chromium.org> Cr-Commit-Position: refs/heads/master@{#650601}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/a0c2bc4c977a..17ecf2a67016 git log a0c2bc4c977a..17ecf2a67016 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 bclayton@google.com Kokoro: Enable macos CI tests 2019-04-13 bclayton@google.com Build: Silence all Clang + SubZero warnings. Created with: gclient setdep -r src/third_party/swiftshader@17ecf2a67016 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:b/130343040 TBR=swiftshader-team+autoroll@chromium.org Change-Id: I1f802da42817e8ae44481b1b0f5ae383664dbf5c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566582Reviewed-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@{#650600}
-
Balazs Engedy authored
Once the user denies a notification permission prompt in a WebContents, automatically dismiss subsequent prompts in the same WebContents, from any origin, until the next user-initiated navigation, which is defined as either a renderer-initiated navigation with a user gesture, or a browser- initiated navigation. Bug: 900997 Change-Id: I9482f47a6cac93ec2a4de9977b6181eb93a38122 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565329 Commit-Queue: Balazs Engedy <engedy@chromium.org> Reviewed-by:
Peter Beverloo <peter@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Cr-Commit-Position: refs/heads/master@{#650599}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/1d1ce6315a29..424cd978f64d Created with: gclient setdep -r src-internal@424cd978f64d The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I7c263e504f14f96ea06210bf5c1302cd9fa716fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565362Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650598}
-
Martin Robinson authored
Fixing lint issues en masse in this directory will make it easier to spot new problems in the future. Bug: 950940 Change-Id: I87235082d320723dd8fe4a27dfc9d43365631619 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1559325 Commit-Queue: Martin Robinson <mrobinson@igalia.com> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#650597}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/0aea1a222e73..1d1ce6315a29 Created with: gclient setdep -r src-internal@1d1ce6315a29 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I4c77ebda82652272961ec83c09d19eec763babdb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565361Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650596}
-
Corentin Wallez authored
This makes canvas.getContext("gpupresent") return a GPUCanvasContext when the --enable-unsafe-webgpu flag is present. BUG=chromium:877147 Change-Id: I74b35cf117aadcc00a979189b8364798b353ac66 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1559181Reviewed-by:
Fernando Serboncini <fserb@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Kai Ninomiya <kainino@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#650595}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/81ac2591a611..b9d6ee1fce0c git log 81ac2591a611..b9d6ee1fce0c --date=short --no-merges --format='%ad %ae %s' 2019-04-13 dhanyaganesh@chromium.org auth.py: Stop unnecessary logging 2019-04-13 jclinton@chromium.org Add support for LUCI CQ Cq-Depend syntax Created with: gclient setdep -r src/third_party/chromite@b9d6ee1fce0c The AutoRoll server is located here: https://autoroll.skia.org/r/chromite-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:chromeos-kevin-rel TBR=chrome-os-gardeners@chromium.org Change-Id: I79dd364876688c0fef3636d1aafd7f3efee8c486 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566581Reviewed-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@{#650594}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/f48440fdc67a..0aea1a222e73 Created with: gclient setdep -r src-internal@0aea1a222e73 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: Idbe31bcbde3f4fcb17e3e3007a18b304c280eeb5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565636Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650593}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/686f41535523..f48440fdc67a Created with: gclient setdep -r src-internal@f48440fdc67a The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: Ia861f026ee5fafd46c21862c0c79703a5c09157f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1565635Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650592}
-
Tarun Bansal authored
The new metrics are recorded based on whether a non-delayable request is already in-flight or not. The heuristic that we are going to experiment with for predicting arrival of non-delayable requests is likely going to be different for when a non-delayable request is already in-flight vs. not. So, these metrics help us better understand how we can set the waiting times for those two cases. Change-Id: I8d7190a81ca65ceb3bc8c75982215806245558bc Bug: 935703 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1553087 Commit-Queue: Tarun Bansal <tbansal@chromium.org> Reviewed-by:
Doug Arnett <dougarnett@chromium.org> Cr-Commit-Position: refs/heads/master@{#650591}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/54dec6696a47..686f41535523 Created with: gclient setdep -r src-internal@686f41535523 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I11f65ef143abe6b1794713664c4b1e627ece1dec Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566952Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650590}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/990bfc785891..69f54f8f0f22 git log 990bfc785891..69f54f8f0f22 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 skia-recreate-skps@skia-swarming-bots.iam.gserviceaccount.com Update go_deps asset Created with: gclient setdep -r src/third_party/skia@69f54f8f0f22 The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=egdaniel@chromium.org Change-Id: Ie6186285191b546de91688d67085c311118dba2d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566951Reviewed-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@{#650589}
-
chromium-autoroll authored
The AutoRoll server is located here: https://autoroll.skia.org/r/fuchsia-sdk-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:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: I3f91f4082230d68e76a1ddc472b019e30ddbd3c9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566858Reviewed-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@{#650588}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/362e4944f654..a0c2bc4c977a git log 362e4944f654..a0c2bc4c977a --date=short --no-merges --format='%ad %ae %s' 2019-04-13 swiftshader.regress@gmail.com Regres: Update test lists @ acf12f1c Created with: gclient setdep -r src/third_party/swiftshader@a0c2bc4c977a The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@chromium.org Change-Id: I60b2480a1c9733c1ecddc4b05e0293fd2e9d4eb8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566950Reviewed-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@{#650587}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/4d0e2b70126d..c789f4d537ae git log 4d0e2b70126d..c789f4d537ae --date=short --no-merges --format='%ad %ae %s' 2019-04-13 benjhayden@chromium.org Migrate cp-toast to es6 module Created with: gclient setdep -r src/third_party/catapult@c789f4d537ae 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:950011 TBR=crouleau@chromium.org Change-Id: I32e8e6e2a490ee20d9962b10994451b1f077143a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566857Reviewed-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@{#650586}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/2f66f8bdd29f..54dec6696a47 Created with: gclient setdep -r src-internal@54dec6696a47 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: I4c0f2c7f02fdf562a6791bd9896c7baddbec84b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566854Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650585}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/acf12f1c3fee..362e4944f654 git log acf12f1c3fee..362e4944f654 --date=short --no-merges --format='%ad %ae %s' 2019-04-13 bclayton@google.com Kokoro: Remove now unused files Created with: gclient setdep -r src/third_party/swiftshader@362e4944f654 The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:b/130343040 TBR=swiftshader-team+autoroll@chromium.org Change-Id: I7ef0566c8b34bfeaf234e690fac36182eb8c8065 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566856Reviewed-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@{#650584}
-
Andrey Lushnikov authored
This patch fixes DOM.getContentQuads for a case when inline element has only a single ::before element which is also inline. BUG=952562 R=dgozman,pfeldman Change-Id: I76e1c6cca468169b17cbe0662b263dd70936ad7b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1564937Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Commit-Queue: Andrey Lushnikov <lushnikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#650583}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/7d9a748e1f57..acf12f1c3fee git log 7d9a748e1f57..acf12f1c3fee --date=short --no-merges --format='%ad %ae %s' 2019-04-13 bclayton@google.com Kokoro: Disable Vulkan tests for Subzero. 2019-04-13 bclayton@google.com Kokoro: Add stub (noop) test files for macOS. Created with: gclient setdep -r src/third_party/swiftshader@acf12f1c3fee The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:b/130343040,chromium:b/130343040 TBR=swiftshader-team+autoroll@chromium.org Change-Id: I43c5ad953f70983cd01b669b6df5911d7ab735cd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566853Reviewed-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@{#650582}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/8e6771fa1537..2f66f8bdd29f Created with: gclient setdep -r src-internal@2f66f8bdd29f The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=anthonyvd@chromium.org,andypaicu@chromium.org,aboxhall@chromium.org,caseq@chromium.org Change-Id: Ie7bf3b4abb9224e61c97cf5bb55b6332760c7ecb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1566148Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#650581}
-