- 11 May, 2019 36 commits
-
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/efef0e4b1fc4..97f08fa2e68f git log efef0e4b1fc4..97f08fa2e68f --date=short --no-merges --format='%ad %ae %s' 2019-05-11 natlee@microsoft.com Create nonzero_clear_resources_on_creation_for_testing toggle Created with: gclient setdep -r src/third_party/dawn@97f08fa2e68f The AutoRoll server is located here: https://autoroll.skia.org/r/dawn-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:dawn-linux-x64-deps-rel;luci.chromium.try:dawn-mac-x64-deps-rel;luci.chromium.try:dawn-win10-x64-deps-rel;luci.chromium.try:dawn-win10-x86-deps-rel TBR=cwallez@google.com Change-Id: I6a2f5a52345cd47dfbd0f7e86498c5a03cc59399 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607282Reviewed-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@{#658860}
-
chromium-autoroll authored
https://pdfium.googlesource.com/pdfium.git/+log/3fa919347bc7..6f8388801226 git log 3fa919347bc7..6f8388801226 --date=short --no-merges --format='%ad %ae %s' 2019-05-10 thestig@chromium.org Remove impossible code related to CPDF_Type3Font. 2019-05-10 thestig@chromium.org Fix nits in CPDF_Pattern and related code. Created with: gclient setdep -r src/third_party/pdfium@6f8388801226 The AutoRoll server is located here: https://autoroll.skia.org/r/pdfium-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=pdfium-deps-rolls@chromium.org Change-Id: Id78bc13bba9aa55f0a78a6336c328fe272c963b0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607039Reviewed-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@{#658859}
-
Peter Kasting authored
* Use in-declaration initializers where possible * Avoid bare new * Reset the cached preferred size on PreferredSizeChanged() Bug: none Change-Id: I68a8a9a3b868d2065d767e5f30b86ae70842378a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1601577 Commit-Queue: Peter Kasting <pkasting@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#658858}
-
Matt Wolenetz authored
With recent removal of LegacyByDts buffering logic, this change does the last of the major cleanup to SourceBufferStream such that it now uses base::TimeDelta for presentation time, removes the now-unnecessary wrappers of SourceBufferRange that converted time type from/to DecodeTimestamp, and updates the callers and tests of SourceBufferStream's API. Also adds a TODO around tangential compliance work remaining to fix https://crbug.com/623729. BUG=771349,623729 Change-Id: Ib87004719319ca34e917d54b1004ed111eab609c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1597544Reviewed-by:
Dan Sanders <sandersd@chromium.org> Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Cr-Commit-Position: refs/heads/master@{#658857}
-
Nigel Tao authored
This adds a new event to extensions::ExtensionPrefsObserver, called OnExtensionLastLaunchTimeChanged, and makes apps::ExtensionApps react to this event. With the App Service disabled (the status quo), this test worked because answering the FilterDuplicate query involves asking the ExtensionPrefs directly, which returns the newer answer. With the App Service enabled, answering an app list search query doesn't ask ExtensionPrefs directly, because the purpose of the App Service is that app list code doesn't know about extensions (or ARC++, or Crostini, etc.). Instead, it asks the App Service. But because of Mojo asynchronous-ness, the App Service works on a push model (you observe it, it will send you updates) instead of a pull model (you ask it directly). The push model only works if the server side of the App Service can be notified whenever the relevant ExtensionPrefs are updated. Hence, the new OnExtensionLastLaunchTimeChanged event. Also update AppSearchProviderTest::AddExtension to install, not just load, the new extension. apps::ExtensionApps listens for installs, not loads. For example, OnExtensionLoaded is triggered when an extension is *re*-loaded, so having apps::ExtensionApps listen to that instead would mean spurious updates. Also fix a couple of typo's in AppSearchProviderTest. This fixes `unit_tests --enable-features=AppServiceAsh --gtest_filter="AppSearchProviderTest.FilterDuplicate"`. It fails before and passes after this commit. Note that `unit_tests --gtest_filter="AppSearchProviderTest.FilterDuplicate"`, without AppServiceAsh enabled, passes both before and after this commit. BUG=826982 Change-Id: I044eab158eaa1ee2c17d6b9a873033d8fcfb1a9a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1553127Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Commit-Queue: Nigel Tao <nigeltao@chromium.org> Cr-Commit-Position: refs/heads/master@{#658856}
-
Stefan Zager authored
When a LocalFrame with a RemoteOwner becomes detached, the RemoteFrameView in the parent process must be notified that it should not generate occlusion information. Prior to this patch, that notification originated in the process of the detached frame and was sent via IPC to the RemoteFrameView in the process of the embedding page. With this patch, the flag will be set by RemoteFrameView::Dispose running in the process of the embedding page. This should be fine, and avoids problematic IPC to a frame that's being torn down; but it relies on the assumption that the RemoteFrameView will be reliably torn down when the remote frame becomes detached. If there are any exceptions to that, then the embedding process may continue to (expensively) generate occlusion information for the defunct remote frame. The test included in this CL checks that occlusion tracking is disabled for a detached frame in the common case, but it is not comprehensive. BUG=957543 R=dcheng@chromium.org,eae@chromium.org Change-Id: I7fbc401f908934da2a6ffe99930ea21ddfb802ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606760Reviewed-by:
Emil A Eklund <eae@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Stefan Zager <szager@chromium.org> Cr-Commit-Position: refs/heads/master@{#658855}
-
Findit authored
This reverts commit bfa78d12. Reason for revert: Findit (https://goo.gl/kROfz5) identified CL at revision 658504 as the culprit for flakes in the build cycles as shown on: https://analysis.chromium.org/p/chromium/flake-portal/analysis/culprit?key=ag9zfmZpbmRpdC1mb3ItbWVyQwsSDEZsYWtlQ3VscHJpdCIxY2hyb21pdW0vYmZhNzhkMTI1ODAxNzVhNGJmZjRmOTVkZGFmZjMzZGYwYTQ2ZGVhNww Sample Failed Build: https://ci.chromium.org/buildbot/chromium.chromiumos/linux-chromeos-dbg/12318 Sample Failed Step: base_unittests Sample Flaky Test: AbstractPromiseTest.CantRejectIfpromiseDeclaredAsNonRejecting Original change's description: > Reland: Promises: Add AbstractPromise > > Origional patch: https://crrev.com/c/1539981 > > This is the internal promise representation. It implements the machinery > needed to marshal and dispatch promises as they become ready for > execution. > > Care has been taken to try and minimize the size of the AbstractPromise > class and to keep down the number of heap allocations. The promise result > and the executor are both stored in the base::unique_any since they are > never needed at the same time. The size of AbstractPromise on x64 is 96 > bytes in builds without DCHECKS. > > In builds with DCHECKS it's larger because there's additional storage > used to diagnose and prevent various usage hazards: > > * Unhandled rejection > * Double move of promise results to callbacks > * Mixed move and non-move semantics of promise results to callbacks > > The base::any_internal type has been adjusted so it can store the > SmallUniqueObject<> inline, which is used to store the promise executor. > The largest anticipated promise executor base::All is the size of > 3x sizeof(void*) to hold a vtable and a std::vector. > > Design: https://docs.google.com/document/d/1l12PAJgEtlrqTXKiw6mk2cR2jP7FAfCCDr-DGIdiC9w/edit > > TBR=fdoray@chromium.org, etiennep@chromium.org > > Bug: 906125 > Change-Id: I15dbb78d4aecb6ae60f5dfaca8f73aba3fdd0963 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1605683 > Reviewed-by: Alex Clarke <alexclarke@chromium.org> > Commit-Queue: Alex Clarke <alexclarke@chromium.org> > Cr-Commit-Position: refs/heads/master@{#658504} Change-Id: I47ac4ae4e307b1e9a048cd1fa7bc18712dc55966 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 906125 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606973 Cr-Commit-Position: refs/heads/master@{#658854}
-
Zentaro Kavanagh authored
- The unique pointer will be destroyed/reset anyway - Setting a member to null right before destruction is redundant BUG=None TEST=compiles Change-Id: Ie1115e064133cea85c538aeb11daf9bbed7bfadc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607122Reviewed-by:
Sean Kau <skau@chromium.org> Commit-Queue: Zentaro Kavanagh <zentaro@chromium.org> Cr-Commit-Position: refs/heads/master@{#658853}
-
Oriol Brufau authored
This patch makes two 'repeat()' values for 'grid-template' be considered to be different if one uses 'auto-fill' and the other 'auto-fit'. Previously, they were considered to be equal if the repeated values were the same, without comparing the repeat type. Therefore, the grid was not updated when setting both values one after the other. BUG=961407 TEST=fast/css-grid-layout/grid-change-auto-repeat-tracks.html Change-Id: I4e0202097097337aef600e5e8cb732b076bc8ade Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606840Reviewed-by:
Manuel Rego <rego@igalia.com> Commit-Queue: Oriol Brufau <obrufau@igalia.com> Cr-Commit-Position: refs/heads/master@{#658852}
-
Matt Wolenetz authored
With recent removal of LegacyByDts buffering logic, there is no longer a need to split the internals of SourceBufferRange into ByDts and ByPts implementations. This change merges the ByPts implementation into SourceBufferRange (SBR), makes SBR a concrete type, and updates a multitude of references to SBRByPts to be to SBR. BUG=771349 Change-Id: I0f96ea98733c8f124d616433c2f3e3324f06e9ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1594277Reviewed-by:
Dan Sanders <sandersd@chromium.org> Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Cr-Commit-Position: refs/heads/master@{#658851}
-
Kristi Park authored
Bug: 851335 Change-Id: Ia5e1ca86f1940851337009b923c6259fb5a05676 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606766 Commit-Queue: Kristi Park <kristipark@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#658850}
-
Sergey Ulanov authored
1. Update StructTraits for NativePixmapHandle to allow null vmo handle. VMO handle is set only for NativePixmap instances that can be mapped to memory. 2. Updated the test to set buffer_collection_id as it is required for all NativePixmap's on Fuchsia. 3. Removed gfx_unittests test filter as we no longer need to filter any tests. Bug: 952652 Change-Id: I9882849a302700b411ded0a9e9f4a805d8425c63 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603542 Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#658849}
-
Sergey Ulanov authored
Some targets were already enabled on Fuchsia, but were not in gn_all. This moves them to gn_all Change-Id: I707812fa1394f87fd48e4078fccbef5fc749d028 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603882Reviewed-by:
Nico Weber <thakis@chromium.org> Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#658848}
-
Zentaro Kavanagh authored
- No change to behavior BUG=None TEST=compiles Change-Id: I55d53415dbce1b004fdda015695d3a10b7eb118c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607121Reviewed-by:
Sean Kau <skau@chromium.org> Commit-Queue: Zentaro Kavanagh <zentaro@chromium.org> Cr-Commit-Position: refs/heads/master@{#658847}
-
Ilia Samsonov authored
Fail TestLauncher if disabled tests shares a name with another test. Added unit tests for TestLauncher disabled tests logic. Changed TestResultTracker unit test to better reflect disabled test tags. Changed problematic disabled tests name that caused CQ to fail. DISABLED_BrowserCloseInfiniteBeforeUnload was removed since it is a copy of BrowserCloseInfiniteBeforeUnload. Bug: 961424,960619 Change-Id: I064a6d5c06e5dfccab2e54d2d5e54ff3903e81f1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1603483 Commit-Queue: Ilia Samsonov <isamsonov@google.com> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#658846}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/fd99d6f2..e7fe3e3c Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I2280b7dbf4ecb518cce5ac6141e94c63e0b5496b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606632Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#658845}
-
Kyle Milka authored
This should make things a bit more clear. Choose to use richerPicker_fooBar instead of richerPickerFooBar to stand out more. Bug: 937570 Change-Id: I2db7d65c6d7aaaea424a95511b57bef8b7849ba7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607220 Commit-Queue: Kyle Milka <kmilka@chromium.org> Auto-Submit: Kyle Milka <kmilka@chromium.org> Reviewed-by:
Kristi Park <kristipark@chromium.org> Cr-Commit-Position: refs/heads/master@{#658844}
-
Jerome Jiang authored
https://chromium.googlesource.com/webm/libvpx.git/+log/1cbcb820ace4..4d0fe85c1957 $ git log 1cbcb820a..4d0fe85c1 --date=short --no-merges --format='%ad %ae %s' 2019-05-10 jianj Revert "vp9: Enable ml based partition for speed>=8 low res." 2019-05-10 jingning Assign perceptual AQ mode as 5 2019-05-10 jianj Cast buffer offset to int64_t 2019-05-10 jianj Reland "vp9-rtc: tx_size selection for intra mode in nonrd" 2019-05-09 jianj Fix tsan failure in webrtc test. 2019-05-09 johannkoenig disable row mt test 2019-05-08 jingning Fix key frame detection 2019-05-03 jianj vp8: Remove duplicated code in datarate tests. 2019-05-02 angiebird Add mismatch_debug tool 2019-05-06 jingning Cap arf boost in perceptual quality mode 2019-05-06 jingning Increase min arf boost from 240 to 250 2019-05-06 johannkoenig android: clarify RTCD usage 2019-04-29 deepa.kg Avoid two GF only groups just before a kf Created with: roll-dep src/third_party/libvpx/source/libvpx R=johannkoenig@google.com BUG=chromium:946409 Change-Id: Ibe74bc4de06f2a1a79427695829867216ce3bb9a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607184Reviewed-by:
Johann Koenig <johannkoenig@google.com> Commit-Queue: Jerome Jiang <jianj@google.com> Cr-Commit-Position: refs/heads/master@{#658843}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/29f4ba7d6eb8..3dbe480b559e git log 29f4ba7d6eb8..3dbe480b559e --date=short --no-merges --format='%ad %ae %s' 2019-05-10 shrekshao@google.com Validating draw buffers now also considers color mask settings Created with: gclient setdep -r src/third_party/angle@3dbe480b559e 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:958374 TBR=jonahr@google.com Change-Id: Ic017b464a656b8508baf37b2f599abc337138b03 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607030Reviewed-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@{#658842}
-
Kyle Milka authored
Add the selected state for the default tile, using a placeholder icon for now. Make clicking done rest the background to default. Screencast: http://go/scrcast/NTg4MzA0MjMyMTEzNzY2NHwxYTFhMDM1YS0zNA Bug: 937570 Change-Id: Iab0b09c16124333caf9513126ee94e7d403d15f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606577 Commit-Queue: Kyle Milka <kmilka@chromium.org> Reviewed-by:
Gayane Petrosyan <gayane@chromium.org> Cr-Commit-Position: refs/heads/master@{#658841}
-
Robert Ogden authored
See bug for more details. TBR=tbansal@chromium.org Bug: 961934 Change-Id: I7cca3920fa8c8a1402a7c2189a5e8775de58bd30 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607182Reviewed-by:
Robert Ogden <robertogden@chromium.org> Reviewed-by:
Tarun Bansal <tbansal@chromium.org> Commit-Queue: Robert Ogden <robertogden@chromium.org> Cr-Commit-Position: refs/heads/master@{#658840}
-
Matt Wolenetz authored
With recent removal of LegacyByDts buffering logic, SourceBufferRange(ByPts)::Get{Buffered}EndTimestamp methods return values in PTS form, and there are no longer any ByDts overrides of those methods. This change removes the now-unnecessary test-only "GetRangeEndTimesForTesting" method and modifies the tests to use the SBRByPts methods instead. BUG=771349 Change-Id: I26e557a6628c0ba42ce279d340d12a4fe10bfdd9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1593928Reviewed-by:
Dan Sanders <sandersd@chromium.org> Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Cr-Commit-Position: refs/heads/master@{#658839}
-
Matt Wolenetz authored
With recent removal of LegacyByDts buffering logic, this change removes obsolete code in SourceBufferStream that detects and logs to media-internals when a non-keyframe is followed in append sequence by a keyframe with the same decode timestamp. With DTS timelines of two distinct GOPs now made immaterial in the ByPts buffering logic (below FrameProcessor), this log has even less value than the marginal value it had when we still had LegacyByDts. BUG=771349 Change-Id: I21c84fb1df4e314719bc8b0ae7809f2c9cbdc44f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1595172Reviewed-by:
Dan Sanders <sandersd@chromium.org> Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Cr-Commit-Position: refs/heads/master@{#658838}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/1643e6b61293..d4bdb8b0e03e Created with: gclient setdep -r src-internal@d4bdb8b0e03e 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@google.com,alph@google.com,aboxhall@google.com,battre@google.com Change-Id: Ibe6f52fd67ad07e6bd5dab6d1241fc5c951603ef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607027Reviewed-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@{#658837}
-
Ahmed Fakhry authored
This CL adds mirroring of the desk contents as well as the wallpaper into the desk's mini_view. Demo: https://bugs.chromium.org/p/chromium/issues/detail?id=866622#c28 BUG=866622 TEST=Mostly manual, minor tests modification. Change-Id: Ia558a35e7a5b5e04020f669830010c55279c5361 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602815 Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Mitsuru Oshima (slow - gardening) <oshima@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Reviewed-by:
Sammie Quon <sammiequon@chromium.org> Cr-Commit-Position: refs/heads/master@{#658836}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 48b83dda. With Chromium commits locally applied on WPT: c4dc3441 "[WPT] Reland Upload a test for sending mouse events with key pressed" fec827fb "Added wpt tests for overscroll customization." c9077e39 "Restore original tail-processing for ScriptProcessor and AudioWorklet" faed29aa "[EventTiming] Remove unneeded prefix from WPT tests" 9d5bc5ec "Portals: Add support for frame-src CSP directive." d814fafc "Check for detached ArrayBuffers in Web Bluetooth writeValue functions" 82728505 "[Animation Worklet] Do not allow undefined/NaN local time" 12376bce "Correctly invalidate snap container data when relevant css props change" 01d571da "Rename touch tap function in pointerevent_support.js" 5e3c6036 "[sms] Restrict SMS Receiver API to Top Level Frames" 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: jsbell@chromium.org: external/wpt/resources NOAUTOREVERT=true TBR=lpz No-Export: true Change-Id: I27ea38d7c87bcb84d873180ed3dd7033f1741f94 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606575Reviewed-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@{#658835}
-
Alexei Filippov authored
This reverts commit 3bd9684c. Reason for revert: the test is still flaky https://ci.chromium.org/p/chromium/builders/ci/Mac10.13%20Tests/13241 Original change's description: > [EventTiming] Fix programmatic click test > > Commits aee8357d and > faed29aa landed almost at the same time, > so we accidentally landed a test with the wrong script src for the > helper functions. > > Bug: 961547 > Change-Id: Id8a615477a54e56139d9d90fc4feb5f780b729a2 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606225 > Reviewed-by: Liquan (Max) Gu <maxlg@chromium.org> > Commit-Queue: Nicolás Peña Moreno <npm@chromium.org> > Cr-Commit-Position: refs/heads/master@{#658761} TBR=npm@chromium.org,maxlg@chromium.org Change-Id: I5612c80e93779288839660d8336e6b7ca741732b No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 961547 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606823Reviewed-by:
Alexei Filippov <alph@chromium.org> Commit-Queue: Alexei Filippov <alph@chromium.org> Cr-Commit-Position: refs/heads/master@{#658834}
-
Daniel McArdle authored
We cannot delete the base::MD5 implementation until NaCl is removed. However, this CL effectively unships the code from binaries where NaCl is not enabled. Bug: 755368 Change-Id: I1a0b3a1f71a2798af26d2819a7112e01fb8f5781 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1596358 Commit-Queue: Daniel McArdle <dmcardle@chromium.org> Auto-Submit: Daniel McArdle <dmcardle@chromium.org> Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Sam McNally <sammc@chromium.org> Cr-Commit-Position: refs/heads/master@{#658833}
-
Adam Langley authored
This change is the result of UI review for resident keys: • Update privacy string. • Update account selection title and remove description. • Merge missing capability messages for user-verification and resident keys into a single, generic message. • Tweak “storage full” message. Change-Id: Id3614020ff691c74f56118476fcb5fdb898ff44d Bug: 941120 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606243 Auto-Submit: Adam Langley <agl@chromium.org> Commit-Queue: Martin Kreichgauer <martinkr@google.com> Reviewed-by:
Martin Kreichgauer <martinkr@google.com> Cr-Commit-Position: refs/heads/master@{#658832}
-
Dan Sanders authored
This CL adds two new features (both enabled by default) for testing HLS configuration: - CanPlayHls: Enables CanPlayType() and other queries for HLS MIME types. Note that disabling this feature also disables playback by navigating to .m3u8 files. - HlsPlayer: Enables WebMediaPlayerImpl to use MediaPlayerRenderer to play HLS manifests. These features can be disabled to test site behavior when HLS is not supported. Change-Id: Iba16d8d60a991ba36d88c0f5188c6189308ab5e4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1601973Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Dan Sanders <sandersd@chromium.org> Cr-Commit-Position: refs/heads/master@{#658831}
-
Sebastien Marchand authored
Bug: 961336 Change-Id: Ib6d553da8733e54eabf98049be85812a10cdc83c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602596Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#658830}
-
Chisoon Jeong authored
Reduce copies of PipelineMetada (which contains AudioDecoderConfig and VideoDecoderConfig) by using pass by reference. This was originally authored by Andre Rosa<andre.rosa@lge.com> Change-Id: I9ddf137d5d35154862501edcbbfe5b26c1dacbf0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1601613 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
John Rummell <jrummell@chromium.org> Cr-Commit-Position: refs/heads/master@{#658829}
-
Ahmed Mehfooz authored
Will be used to display small buttons below feature pods to indicate current page. Can be clicked to switch to corresponding page. Bug: 914077 Change-Id: Ida92a7bd7ddb0cf8601e468500155822fc6f1424 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1576005Reviewed-by:
Jenny Zhang <jennyz@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Tim Song <tengs@chromium.org> Commit-Queue: Ahmed Mehfooz <amehfooz@chromium.org> Cr-Commit-Position: refs/heads/master@{#658828}
-
Kristi Park authored
Hide the new shortcut layout behind a flag and re-add the old flexbox layout. Bug: 851335 Change-Id: Ic10b20f5a77874138cbd356aac98f55aa7109c06 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606583 Commit-Queue: Kristi Park <kristipark@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#658827}
-
Alexei Filippov authored
BUG=961938 TBR=msw@chromium.org,etienneb@chromium.org Change-Id: Ic4ed7e67cdee714b46c06b913e1fee28fc2985e2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606773Reviewed-by:
Alexei Filippov <alph@chromium.org> Commit-Queue: Alexei Filippov <alph@chromium.org> Cr-Commit-Position: refs/heads/master@{#658826}
-
Kevin Babbitt authored
The omnibox sets up a "Controls" relationship with its popup. Our UIA implementation maps this to the ControllerFor property. The OS would discover this relationship and ask for the popup's fragment root. But when the popup is closed, it has no associated AcceleratedWidget, which is the key we use to look up the fragment root. The fix is in two parts. First, for UIA properties that return one or more related elements, we validate that those related elements will not immediately fail when queried by the OS for additional information. Even with that validation, it's still possible for us to return a related element that's valid at the time we check but later becomes invalid due to the widget being closed. Thus the second part of the fix is to convert the DCHECK that was hitting to an `if`. Bug: 959033 Change-Id: Ic8cf47229e45cfe1650806e6365b17aa67a614c4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1600408Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Kevin Babbitt <kbabbitt@microsoft.com> Cr-Commit-Position: refs/heads/master@{#658825}
-
- 10 May, 2019 4 commits
-
-
Felicia Lim authored
https://chromium.googlesource.com/chromium/third_party/ffmpeg.git/+log/90cf969d61d6..68f1932090d5 $ git log 90cf969d6..68f193209 --date=short --no-merges --format='%ad %ae %s' 2019-05-09 flim Revert "Revert "libopus: Add channel mapping 2 support in libopusdec"" 2019-05-06 msalama Default stack frames are needed on Android for the Orderfile. Created with: roll-dep src/third_party/ffmpeg Bug: chromium:958645 Change-Id: I1e59b53c569de513cd2b097021e69937aba41924 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1607081Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#658824}
-
John Budorick authored
Bug: 861983 Change-Id: Ic78e461b1ec9b7d7d66f1c87e4c7842fab77f915 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606767 Commit-Queue: John Budorick <jbudorick@chromium.org> Commit-Queue: Ben Pastene <bpastene@chromium.org> Auto-Submit: John Budorick <jbudorick@chromium.org> Reviewed-by:
Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#658823}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/2568cf76ee2c..8ab4053f00b0 git log 2568cf76ee2c..8ab4053f00b0 --date=short --no-merges --format='%ad %ae %s' 2019-05-10 bclayton@google.com Implement Float16 formats and additional blend modes. Created with: gclient setdep -r src/third_party/swiftshader@8ab4053f00b0 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/132434966,chromium:b/132433217 TBR=swiftshader-team+autoroll@google.com Change-Id: I1c157e2d1e1daf72ba68a348dde50b75a2765998 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606622Reviewed-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@{#658822}
-
Yue Ru Sun authored
Bug: 959378 Change-Id: I727cd1464c8e4c72461184871e989eec299729d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1598337Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Dominic Battré <battre@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Commit-Queue: Yue Ru Sun <yrsun@chromium.org> Cr-Commit-Position: refs/heads/master@{#658821}
-