- 06 Jan, 2020 40 commits
-
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/fd2b2ce5d7b8..8987f8f14e92 git log fd2b2ce5d7b8..8987f8f14e92 --date=short --first-parent --format='%ad %ae %s' 2020-01-06 tvanderlippe@chromium.org Migrate sources/ to ESM Created with: gclient setdep -r src/third_party/devtools-frontend/src@8987f8f14e92 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Bug: chromium:1006759 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I46069e50d7b072016a961eb640a66c83a145fe09 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1988148Reviewed-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@{#728502}
-
Corentin Wallez authored
Update skia_renderer_gl_blink_web_tests expectations to allow flaky media/controls/video-enter-exit-fullscreen-while-hovering-shows-controls.html TBR=ynovikov@chromium.org Bug: chromium:1027772 Change-Id: Ie4b9b5578c09adbfeff5c53cdd814bcb0042f93a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1988346Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#728501}
-
Mugdha Lakhani authored
To be checked in after these CL has been checked in: https://chromium-review.googlesource.com/c/chromium/src/+/1985985 https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/1985661 Bug: 1038678 Change-Id: I7e579e4017d29dc9af72f01a533c843f3baeb2b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980697Reviewed-by:
Tim van der Lippe <tvanderlippe@chromium.org> Commit-Queue: Mugdha Lakhani <nator@chromium.org> Cr-Commit-Position: refs/heads/master@{#728500}
-
Santiago Aboy Solanes authored
This CL was created automatically with tools/perf/update_wpr script R=crouleau@chromium.org Bug: 878390 Change-Id: If4c4c2fdd7edbcc43f5b093638bcd06d512995ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1978660 Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org> Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Cr-Commit-Position: refs/heads/master@{#728499}
-
Monica Basta authored
This CL is part of the profile info cache refactoring project. Bug: 305720 Change-Id: I0c1c2058a7f5ec1078dd84c516dcbc4e73fa144e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985843Reviewed-by:
David Roger <droger@chromium.org> Commit-Queue: Monica Basta <msalama@chromium.org> Cr-Commit-Position: refs/heads/master@{#728498}
-
Rune Lillesveen authored
Caused a fuzzer crash because ancestor marking of ChildNeedsStyleRecalc happened with out-of-date FlatTreeNodeData. Bug: 1034265 Change-Id: If36225997187bd1a3dcfb6ea4b9519ce44172711 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986800Reviewed-by:
Anders Hartvoll Ruud <andruud@chromium.org> Commit-Queue: Rune Lillesveen <futhark@chromium.org> Cr-Commit-Position: refs/heads/master@{#728497}
-
Corentin Wallez authored
This test started failing after https://chromium-review.googlesource.com/c/angle/angle/+/1952166 probably due to a driver bug that's mentioned in that CL. Suppressing to keep the waterfall green while it is investigated. Bug: chromium:1000354 TBR=ynovikov@chromium.org Change-Id: I201119ae13d3d98f83befe0171d67da446c82c92 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986804Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#728496}
-
Anders Hartvoll Ruud authored
Instead of removing animation properties from the cascade, it's cheaper to just skip them using the Exclude functionality. BUG=947004 Change-Id: Ic42ca2ef396a61cd8e1828f5022717a189f8f02c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986796Reviewed-by:
Rune Lillesveen <futhark@chromium.org> Commit-Queue: Anders Hartvoll Ruud <andruud@chromium.org> Cr-Commit-Position: refs/heads/master@{#728495}
-
Alex Keng authored
This CL uses a different approach to implement the rounded corner for <meter> to address the 1 pixel gap issue. The previous approach [1] (which uses clip-path applied on -internal-meter-clip) is reverted, and the new approach is using [overflow: hidden] on -webkit-meter-bar, and [display:grid] on -webkit-meter-inner-element. Note we can't just use overflow:hidden without changing display to grid since the baseline alignment would change (per CSS 2.1 spec, see [2] for details. (vertical-align:bottom doesn't work either)). [1] https://chromium-review.googlesource.com/c/chromium/src/+/1858295 [2] https://stackoverflow.com/questions/20152795/making-a-span-element-inline-block-and-overflow-hidden-will-displace-him Bug: 1021231 Change-Id: I51ffab57983c268620b6c81927dabd32043aa0c5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980951 Commit-Queue: Alex Keng <shihken@microsoft.com> Reviewed-by:
Mason Freed <masonfreed@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#728494}
-
Morten Stenshorne authored
It seems that the list of failing Linux tests is identical to the one already added for Windows, so I just copied that. These tests seem to fail consistently locally (Linux). TBR=masonfreed@chromium.org Bug: 1035582 Change-Id: I18e76d6e1550ffd35418b4f83dc97828daac9bf6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986835Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#728493}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/d74594bbbb71..fd2b2ce5d7b8 git log d74594bbbb71..fd2b2ce5d7b8 --date=short --first-parent --format='%ad %ae %s' 2020-01-06 tvanderlippe@chromium.org Migrate perf_ui/ to ESM Created with: gclient setdep -r src/third_party/devtools-frontend/src@fd2b2ce5d7b8 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Bug: chromium:1006759 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: Id05c815f6127a6d54c75d1c79e584118a5d8bf1e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1987857Reviewed-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@{#728492}
-
Tsuyoshi Horo authored
Bug: 1018640,1038346 Change-Id: I6d94787430441377669ceb7bbf5d62c22a01390f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980263Reviewed-by:
Kunihiko Sakamoto <ksakamoto@chromium.org> Commit-Queue: Tsuyoshi Horo <horo@chromium.org> Cr-Commit-Position: refs/heads/master@{#728491}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/61fe7a44e909..b30c2651879a Created with: gclient setdep -r src-internal@b30c2651879a If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: None Tbr: jbudorick@google.com Change-Id: Ifbba52b8e926b79a72532830d68ad7cb733691ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1987859Reviewed-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@{#728490}
-
Tobias Sargeant authored
This paves the way to unfork the weblayer MinidumpUploader, which splits MinidumpUploadCallable into two classes, one of which is responsible for uploading a single minidump. Unfortunately that causes a naming collision; resolve it in favour of renaming the minidump_uploader class, which is responsible for managing the upload of multiple minidumps as a JobService job. Bug: 1029724 Test: run_webview_instrumentation_test_apk -f \ Test: 'org.chromium.android_webview.test.services.MinidumpUploadJobTest#*' Test: run_chrome_public_test_apk -f \ Test: 'org.chromium.components.minidump_uploader.*#*' Change-Id: Ib82dd334e77ee0e60a3c35a0d2f8bd38cfb6ed3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1975881 Commit-Queue: Tobias Sargeant <tobiasjs@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Anna Malova <amalova@chromium.org> Cr-Commit-Position: refs/heads/master@{#728489}
-
Monica Basta authored
This CL is part of the profile info cache refactoring project. Bug: 305720 Change-Id: I70c4642227b9cf39ee71db983ea987bbde79d1fe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985777Reviewed-by:
David Roger <droger@chromium.org> Commit-Queue: Monica Basta <msalama@chromium.org> Cr-Commit-Position: refs/heads/master@{#728488}
-
Monica Basta authored
This CL adds a check on the |FetchImage| request state before overriding the account image stored in the |AccountTrackerService|. We should not override the image with an empty image in case of failure to re-fetch the image in one of the 24 hours update interval. Bug: 1037865 Change-Id: Ia78cf1d04791711a74f4f8fccb7a1ad53de2004d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985765Reviewed-by:
David Roger <droger@chromium.org> Commit-Queue: Monica Basta <msalama@chromium.org> Cr-Commit-Position: refs/heads/master@{#728487}
-
Gauthier Ambard authored
When the layout of the NTP is invalidated because the search engine has changed, the Collection View needs to be scrolled so the header is correctly resized and positioned. Fixed: 1025694 Change-Id: Id64d421b07b9c55c640c77740bacd813c6ab5ef2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985778 Auto-Submit: Gauthier Ambard <gambard@chromium.org> Commit-Queue: Olivier Robin <olivierrobin@chromium.org> Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Cr-Commit-Position: refs/heads/master@{#728486}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 8dd0c7f8. 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=lpz No-Export: true Change-Id: I1466c595364ae6f865b87c92e3488b860c2e3280 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1988285Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#728485}
-
Colin Blundell authored
It has been cleaned of //chrome-level dependencies in a predecessor CL, so the componentization is trivial. Bug: 1025059 Change-Id: I47da26916a614fd8925bdbae1cb6fda9d72623ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1983236Reviewed-by:
Carlos IL <carlosil@chromium.org> Commit-Queue: Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#728484}
-
Hitoshi Yoshida authored
In ReferenceType, attributes that start with '_' are not proxied. So ReferenceType._unwrap() calls IdlType._unwrap() which does nothing even if it refers either of NullableType or TypedefType. This CL makes it possible. Bug: 839389 Change-Id: I23e8a54997f7f88420998acc7672eb4ee875b988 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980266 Commit-Queue: Hitoshi Yoshida <peria@chromium.org> Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Cr-Commit-Position: refs/heads/master@{#728483}
-
Abhijeet Kandalkar authored
This CL has two goals, 1. Remove unwanted DEFINE_TYPE_CASTS 2. Use To<WebGLRenderingContextBase>(element) in place of ToWebGLRenderingContextBase(element) Bug: 891908 Change-Id: I5d38ded1229b5ac969a6d9249ff5e8a76f4982f6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986691Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Abhijeet Kandalkar <abhijeet@igalia.com> Cr-Commit-Position: refs/heads/master@{#728482}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC cr-fuchsia+bot@chromium.org on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast Tbr: cr-fuchsia+bot@chromium.org Change-Id: I0b2a898057371271bebb51c7439baca313724349 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1987319Reviewed-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@{#728481}
-
Eric Seckler authored
The deprecated TRACE_EVENT_ASYNC* macros have been superseded by TRACE_EVENT_NESTABLE_ASYNC*. Updating to the new macros is mostly straight-forward, except in cases where STEP_INTO/PAST macros were used extensively: In those cases, the steps have been converted into nested sub-events. Bug: 1038710 Change-Id: I53d2f80b1efda29722b8e5b7e0872a5095ca595c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1985666Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Commit-Queue: Eric Seckler <eseckler@chromium.org> Cr-Commit-Position: refs/heads/master@{#728480}
-
Colin Blundell authored
In preparation for implementing integration with system autofill in WebLayer, this CL componentizes //android_webview's infrastructure that does the heavy lifting for this integration in WebView. The infrastructure is self-contained and will be reusable out of the box. This CL also suitably generalizes the context of the files: - Renames them appropriately - Removes/generalizes most references to WebView (a few need to be left for legacy compatibility; these are documented). We note that it would be possible to consider merging AutofillProviderImpl.java into AutofillProvider.java in a followup; as far as we know, there are no other implementations of the AutofillProvider interface in the codebase. We did not do that here as (a) it would have introduced a large amount of noise into the CL, and (b) it is debatable whether it is better, as there is some value to having separation between the tight AutofillProvider.java interface exposed to Chromium's autofill and the sprawling AutofillProviderImpl implementation necessary to integrate with the system AutofillService. This CL also adds michaelbai@ as OWNER of the relevant files for integration with system autofill on Android under //components/autofill/android. TBR=michaelbai@chromium.org Bug: 1025617 Change-Id: I4ca7bbd03983d8b46558db1cd0f2d632d36f787c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980738 Commit-Queue: Colin Blundell <blundell@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#728479}
-
Kuo Jen Wei authored
Bug: 141518780 Test: Pass closure compiler check, tast run <DUT> 'camera.CCAUI*' on both HALv1 and v3 devices. Change-Id: I73a9cf7befd738171822bc58cb746ccf712f354d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1983695 Commit-Queue: Kuo Jen Wei <inker@chromium.org> Commit-Queue: Shik Chen <shik@chromium.org> Auto-Submit: Kuo Jen Wei <inker@chromium.org> Reviewed-by:
Shik Chen <shik@chromium.org> Cr-Commit-Position: refs/heads/master@{#728478}
-
Kuo Jen Wei authored
Bug: 141518780 Test: Pass closure compiler check, tast run <DUT> 'camera.CCAUI*' on both HALv1 and v3 devices. Change-Id: Iac9a59809856274b86b0bca1c182576449d37133 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1988086 Commit-Queue: Kuo Jen Wei <inker@chromium.org> Auto-Submit: Kuo Jen Wei <inker@chromium.org> Reviewed-by:
Shik Chen <shik@chromium.org> Cr-Commit-Position: refs/heads/master@{#728477}
-
Kuo Jen Wei authored
Bug: 141518780 Test: Pass closure compiler check, tast run <DUT> 'camera.CCAUI*' on both HALv1 and v3 devices. Test: Manually verify validity of metrics data. Change-Id: I2c9af053a29ac42d903bc75e4de3222f9b65fc97 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986569 Auto-Submit: Kuo Jen Wei <inker@chromium.org> Commit-Queue: Shik Chen <shik@chromium.org> Reviewed-by:
Shik Chen <shik@chromium.org> Cr-Commit-Position: refs/heads/master@{#728476}
-
Greg Thompson authored
Tests may leak files/directories in temp due to ScopedTempDir lifetime issues (see linked bug) or as a result of crashes. This CL augments the TestLauncher to handle such leaks a bit better. When launching a child proc on Windows and macOS, the TestLauncher now directs that child to its own dedicated temporary directory. Upon child exit, the launcher checks for leaked files/directories in that dir and deletes the dir. On test iteration completion, the launcher will emit a list of the tests that produced leaks when run with --test-launcher-print-temp-leaks that looks a lot like this: ERROR: 2 files and/or directories were left behind in the temporary directory by one or more of these tests: PaymentManagerTest.ClearPaymentInstruments:PermissionControllerImplTest.ResettingOverridesForwardsReset:PermissionControllerImplTest.SettingOverridesForwardsUpdates:PermissionControllerImplTest.RequestPermissionsDelegatesIffMissingOverrides:PermissionControllerImplTest.GetPermissionStatusDelegatesIffNoOverrides:PermissionControllerImplTest.GetPermissionStatusForFrameDelegatesIffNoOverrides:PermissionControllerImplTest.NotifyChangedSubscriptionsCallsOnChangeOnly:PermissionControllerImplTest.PermissionsCannotBeOverriddenIfNotOverridable:PermissionControllerImplTest.GrantPermissionsReturnsStatusesBeingSetIfOverridable:PictureInPictureServiceImplTest.EnterPictureInPicture Curious developers can binary search in that short list of tests to find the one(s) that are leaking and clean them up. BUG=546640 TBR=sky@chromium.org Change-Id: If3be7034094827979c225d2eb2beba2d92e6e7ce Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1978679 Commit-Queue: Greg Thompson <grt@chromium.org> Auto-Submit: Greg Thompson <grt@chromium.org> Reviewed-by:
Erik Chen <erikchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#728475}
-
Alexandre Courbot authored
The format and plane count variables are closely related, yet they were initialized in different parts of the code. Make sure they are initialized together to make the code more readable. BUG=None TEST=Video playback working on Kevin with VD disabled. Change-Id: I07e8e7e7e833ab818f9ac7d8e8a750805a923a19 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1982505 Commit-Queue: Alexandre Courbot <acourbot@chromium.org> Auto-Submit: Alexandre Courbot <acourbot@chromium.org> Reviewed-by:
Hirokazu Honda <hiroh@chromium.org> Cr-Commit-Position: refs/heads/master@{#728474}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/57923928ffaf..61fe7a44e909 Created with: gclient setdep -r src-internal@61fe7a44e909 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Cq-Include-Trybots: luci.chrome.try:linux-chromeos-chrome Bug: None Tbr: jbudorick@google.com Change-Id: I91507bf0a4cc66097f8fc4710db34bead0cd1fc0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1987317Reviewed-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@{#728473}
-
Takashi Toyoshima authored
Now the OOR-CORS is enabled by default on TOT, and the main waterfall runs tests with OOR-CORS being enabled. Fyi Builders should be switched to run *without* OOR-CORS now, and their names should be aligned with actual running parameters, Blink-CORS or blink-cors rather than oor-cors. Bug: 1039165 Change-Id: Ib48398cea01fc684d6e6911d2ac1315a9b2ebf5d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1980264 Commit-Queue: Takashi Toyoshima <toyoshim@chromium.org> Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Auto-Submit: Takashi Toyoshima <toyoshim@chromium.org> Reviewed-by:
Takuto Ikuta <tikuta@chromium.org> Cr-Commit-Position: refs/heads/master@{#728472}
-
Hayato Ito authored
TBR=robliao@chromium.org,raymes@chromium.org Bug: 1038957 Change-Id: I29e701ad3fe42b2a96968ca40b506d873600c1b4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986568Reviewed-by:
Hayato Ito <hayato@chromium.org> Reviewed-by:
Robert Liao <robliao@chromium.org> Commit-Queue: Hayato Ito <hayato@chromium.org> Cr-Commit-Position: refs/heads/master@{#728471}
-
Colin Blundell authored
This CL prepares BadClockBlockingPage for componentization and sharing with WebLayer by cleaning it of //chrome-level dependencies. Bug: 1025059 Change-Id: Icacd88b16ad1a50b7b93412986b9a113f138cee5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1982555Reviewed-by:
Carlos IL <carlosil@chromium.org> Commit-Queue: Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#728470}
-
Ting Shao authored
When 'Service-Worker-Allowed' header takes a cross-origin url to override the scope restriction, it must be rejected for security. Bug: 968436 Change-Id: Ia4e8745d2fd86fe014187ade593363eaedf7c8ae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1984901Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Commit-Queue: Ting Shao <ting.shao@intel.com> Cr-Commit-Position: refs/heads/master@{#728469}
-
Kuo Jen Wei authored
Bug: 141518780 Test: Pass closure compiler check, tast run <DUT> 'camera.CCAUI*' on both HALv1 and v3 devices. Change-Id: Idb985eb2585fe80b8d8ade877b994ed3392b878e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986477 Commit-Queue: Kuo Jen Wei <inker@chromium.org> Reviewed-by:
Shik Chen <shik@chromium.org> Auto-Submit: Kuo Jen Wei <inker@chromium.org> Cr-Commit-Position: refs/heads/master@{#728468}
-
Alexandre Courbot authored
These variables were useful when the number of planes was something we needed to worry about, but now they are just used in superficial ways, so remove them. We just need to keep the output and GL plane counts in the SVDA, since it uses them for sanity checks. BUG=None TEST=Video playing in Chrome on Hana and Kevin with VD disabled. Change-Id: Ib6cbebd1555a6e7e8bc9113e2d8d3443bad1cd86 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1982504 Commit-Queue: Alexandre Courbot <acourbot@chromium.org> Auto-Submit: Alexandre Courbot <acourbot@chromium.org> Reviewed-by:
Hirokazu Honda <hiroh@chromium.org> Cr-Commit-Position: refs/heads/master@{#728467}
-
Rachel Carpenter authored
These strings are provided to the untrusted js to read and pass up to the server. TESTED: Manually on device to check the strings are initialised with sensible values. Bug: b/140151178 Change-Id: Id96a28319ed78a68d5bb635ff092c70a976754a0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1983688Reviewed-by:
Trent Apted <tapted@chromium.org> Commit-Queue: Rachel Carpenter <carpenterr@google.com> Cr-Commit-Position: refs/heads/master@{#728466}
-
Hitoshi Yoshida authored
Defines Create() and accessor functions in the class definition. Bug: 839389 Change-Id: I9a2c0a8ec768fa219f95bdd73e8d923830b09545 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1983689Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Commit-Queue: Hitoshi Yoshida <peria@chromium.org> Cr-Commit-Position: refs/heads/master@{#728465}
-
Kuo Jen Wei authored
This CL add logic for monitering visibility of CCA window and close camera stream when window is idle (not recording) and is non-visible in tablet mode. Bug: 1035653 Test: Pass tast run <DUT> 'camera.CCAUI*'. Test: Manually test camera stream is closed when CCA is idle and is invisible in tablet mode. Test: Manually test recording can be continued when CCA is invisible in tablet mode. Change-Id: I05c1ddf3c16dce3897d694e07208b18fd78acc42 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986468Reviewed-by:
Shik Chen <shik@chromium.org> Commit-Queue: Kuo Jen Wei <inker@chromium.org> Auto-Submit: Kuo Jen Wei <inker@chromium.org> Cr-Commit-Position: refs/heads/master@{#728464}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/03f3f75e4828..f1db2661f17c git log 03f3f75e4828..f1db2661f17c --date=short --first-parent --format='%ad %ae %s' 2020-01-06 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 1fdf6ca5141d..1031d2c65b5e (5 commits) Created with: gclient setdep -r src/third_party/skia@f1db2661f17c If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC jvanverth@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Bug: None Tbr: jvanverth@google.com Change-Id: Id39eeff323d1046a248b4101f66e86246b150934 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1987316Reviewed-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@{#728463}
-