- 31 Mar, 2020 40 commits
-
-
Lukasz Anforowicz authored
As explained in https://crbug.com/1021172#c5 and #c6, tests working with extension popups are sensitive to focus/activation changes. This can manifest as flaky test failures if such tests execute in browser_tests test suite. To avoid this, this CL moves the affected tests to the interactive_ui_tests. Bug: 1021172 Change-Id: Icf4bcd43a3343c32ebe693b42026d7822d9ded41 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2108082Reviewed-by:
Karan Bhatia <karandeepb@chromium.org> Commit-Queue: Łukasz Anforowicz <lukasza@chromium.org> Cr-Commit-Position: refs/heads/master@{#754788}
-
Kenichi Ishibashi authored
This CL adds a mojo interface which will be used between //content and the storage service to handle storage operations. This interface is similar to LocalStorageControl but for service worker storage. ServiceWorkerStorage will directly implement the interface. However, to reduce impacts on existing code base, the interface is going to be implemented by a thin wrapper calls ServiceWorkerStorageImpl for now. This CL only adds methods to find a registration. Subsequent CLs will add more methods. Bug: 1055677 Change-Id: I7d8cd0677356a6953144896dd7f05a4ed04a2608 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2120838 Commit-Queue: Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Makoto Shimazu <shimazu@chromium.org> Cr-Commit-Position: refs/heads/master@{#754787}
-
Michael Cui authored
Dwell time is the time the user spent interacting with the current demo session, measured from first user activity to last user activity. While there is an existing metric which measures this, DemoSession.SessionLength, there are some key differences: - SessionLength measures the duration to logout. DwellTime measures the duration to the last user activity. - SessionLength is measured to the nearest minute and uses linear bucketing up to 2 hours. DwellTime is measured to the nearest second and uses exponential bucketing up to 1 hour. - SessionLength persists across crashes and is reported at the start of the next session (possibly to ensure that metrics are sent correctly), while DwellTime is not crash-resistant and is reported at the end of the session. Bug: b/148752593 Test: ash_unittests --gtest_filter="DemoSessionMetricsRecorderTest.DwellTime" Change-Id: I179c59ecd537f33e36e329ba9853b35198ccc793 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2114319 Commit-Queue: Michael Cui <mlcui@google.com> Reviewed-by:
Patti <patricialor@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Cr-Commit-Position: refs/heads/master@{#754786}
-
Andres Calderon Jaramillo authored
This CL fixes the MailboxVideoFrameConverter to let ScopedSharedImage be owned by the unwrapped DMA-buf VideoFrame (a.k.a. origin_frame in the code). Note that the mailbox VideoFrame sent to the client has a reference to the wrapping VideoFrame. Therefore, the new ownership model ensures that the SharedImage lives at least as long as the mailbox VideoFrame, even if the MailboxVideoFrameConverter dies in the meantime (this has been observed to happen when pausing a video then switching to another tab to play another video and then switching back to the original tab - see referenced bug for more details). Note that ScopedSharedImage is changed to be mutable. That's because we need to handle a case in which the visible rectangle of a VideoFrame changes and the SharedImage needs to be regenerated. Bug: 1044890 Test: forced the use of VD in krane and went through scenario in bug. Change-Id: I4ff20b0b5088a7a202efc98747fdb5e7a9e9d5f4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2119153 Commit-Queue: Andres Calderon Jaramillo <andrescj@chromium.org> Reviewed-by:
Chih-Yu Huang <akahuang@chromium.org> Cr-Commit-Position: refs/heads/master@{#754785}
-
Steven Bennetts authored
The current logic doesn't actually get the correct timezone for determining UTC offsets, this fixes that. Bug: 1054951 Change-Id: I46a704647c77adf9fb2806d415ecd219c56d0378 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2124542 Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
James Vecore <vecore@google.com> Cr-Commit-Position: refs/heads/master@{#754784}
-
Gyuyoung Kim authored
This CL moves flex-item-contains-strict.html test from css3/css-flexbox to external/wpt/css/css-flexbox with WPT styles, adding links to the relevant specs, a proper title, and test description. Bug: 1063749 Change-Id: I8c688b51efc8890250073778b76bef1f23f8fa24 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2123573Reviewed-by:
Christian Biesinger <cbiesinger@chromium.org> Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#754783}
-
Dan Harrington authored
- Added LoadStreamFromStoreTask to read model data from the store. - Update LoadStoreTask to try loading from the store first, via the new task. - Save operations executed to persistent storage. - Added some conversions to textproto for tests. My primary goal when making this change was to save operations to persistent storage as they are executed. Pulling this thread led to several changes. We were saving a bit too much data in the single 'stream_data' record, which meant we would have to re-serialize the whole model to save a single piece of information. I went ahead and split 'stream structures' out into another record. All stream structures for the stream now need to be read in at load time, and they need to be sequenced appropriately. In making that change, I wanted to verify we could actually load the data back in. So I implemented loading a stream from storage as well. Bug: 1044139 Change-Id: I98767281b4a5d1ae401dba5db5bff966f3473452 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2123249 Commit-Queue: Dan H <harringtond@chromium.org> Reviewed-by:
Ian Wells <iwells@chromium.org> Cr-Commit-Position: refs/heads/master@{#754782}
-
Daniel Hosseinian authored
The current return type of base::SHA1HashSpan() is too long. Change-Id: I6220807ba411933e9494bed09ce95bd0f5cc5c78 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2125625Reviewed-by:
Marc Treib <treib@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Commit-Queue: Daniel Hosseinian <dhoss@chromium.org> Cr-Commit-Position: refs/heads/master@{#754781}
-
Brandon Wylie authored
The current implementation is looking for a currently running tabbed activity to handle the incoming intent. This is the correct thing to do when handling outside intends, such as an open request from a messaging app. When reparenting tabs in multi-window mode, this clobbers a ChromeTabbedActivity instance which is being recreated as a result of a theme change. Bug: 1055228 Change-Id: I722365c43ec97ab12120e9139eb43a781de8090a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2117062Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Brandon Wylie <wylieb@chromium.org> Cr-Commit-Position: refs/heads/master@{#754780}
-
Nate Fischer authored
This links to zsh-users/zsh-completions, which includes a completion script for the Android emulator command line tool. Test: Upload to gerrit > open file > click "gitiles" Change-Id: I527c5da96af560ad9853c00050fc5e7dcc36705d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128786Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Commit-Queue: Nate Fischer <ntfschr@chromium.org> Cr-Commit-Position: refs/heads/master@{#754779}
-
Gyuyoung Kim authored
Change 'auto' with 'percentage the test title and file name. And, the attribute of the bug link rel is changed to 'issue' with a full bug link. Bug: 1063749 Change-Id: I0a25c6caa3d3afd6c928bb8bc2b692037c0f57c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2126329Reviewed-by:
Christian Biesinger <cbiesinger@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#754778}
-
David Tseng authored
RELNOTES=Fixes developer logging page (Search+o, w) Bug: none Change-Id: I2829ef09c530d8fc8594d7bd5fd1704b3bafa11e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128939Reviewed-by:
Akihiro Ota <akihiroota@chromium.org> Commit-Queue: David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#754777}
-
Theresa Wellington authored
Add a test that validates presentation of the app menu bookmark item based on whether the current page is bookmarked. BUG=1065043 Change-Id: I882b7e55f1f5df7a977f5135702d9c9d029d9362 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128528 Commit-Queue: Theresa <twellington@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#754776}
-
Gyuyoung Kim authored
This CL moves flexitem-stretch-image.html test from css3/css-flexbox to external/wpt/css/css-flexbox with WPT styles, adding links to the relevant specs, and test description. Additionally, this CL adds 100x100-blue.png to external/wpt/css/css-flexbox/support directory. Bug: 1063749 Change-Id: I1424f3fb9ca5a79046e3e451393a4eaa0f080347 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2126428 Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Reviewed-by:
David Grogan <dgrogan@chromium.org> Reviewed-by:
Christian Biesinger <cbiesinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#754775}
-
Gyuyoung Kim authored
This CL moves flexitem-percent-height-change.html test from css3/css-flexbox to external/wpt/css/css-flexbox with WPT styles, adding links to the relevant specs, and test description. Bug: 1063749 Change-Id: I265c8cc40707ffa6cffbacb544aea66add617658 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2124278 Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Reviewed-by:
Robert Ma <robertma@chromium.org> Reviewed-by:
Christian Biesinger <cbiesinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#754774}
-
yjliu authored
in surface aggregator. The |can_use_backdrop_filter_cache| flag is first set in cc when damage of all render surfaces is accumulated. If no damage is present under the render surface with backdrop filters, the flag is set to true to indicate the cache can be used. In surface aggregator, if damage from a surface is under the RPDQ with backdrop filter, the |can_use_backdrop_filter_cache| flag will be reset to false, indicating the backdrop filters on the RPDQ has to be re-calculated. Bug: 1035639 Change-Id: I365a0e01196ce1a01d474a0338734a966911a48e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2103311Reviewed-by:
weiliangc <weiliangc@chromium.org> Commit-Queue: Jun Liu <yjliu@chromium.org> Auto-Submit: Jun Liu <yjliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#754773}
-
Simon Que authored
Only one CI/try builder pair: ios-simulator-code-coverage Schedule of migration: https://docs.google.com/spreadsheets/d/1TZhpasm6iceYm7zqkyEtZ1wn9ZcpREfH4LV4cusICJA/edit#gid=0 Bug: 950413 Change-Id: I64f527f57be72e60a85a53d7ae59d3b0b33c98c3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2119293 Commit-Queue: Simon Que <sque@chromium.org> Reviewed-by:
Takuto Ikuta <tikuta@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#754772}
-
Xiaocheng Hu authored
This patch adds split histograms of the following metrics when rendering delay for web font preloading has been triggered: - PaintTiming.NavigationToFirstPaint - PaintTiming.NavigationToFirstContentfulPaint - PaintTiming.NavigationToLargestContentfulPaint - LayoutInstability.CumulativeShiftScore This will help us understand the effectiveness of this optimization, and adjust the length of the delay to the best value. Bug: 1040632 Change-Id: I6f8aa151c576c9d8d583647a3a7ef6fcb8fb833d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2109251Reviewed-by:
Kunihiko Sakamoto <ksakamoto@chromium.org> Reviewed-by:
Charlie Harrison <csharrison@chromium.org> Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Bryan McQuade <bmcquade@chromium.org> Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org> Cr-Commit-Position: refs/heads/master@{#754771}
-
tby authored
When two event definitions are grouped under a project, their recorded events should share an user event ID. This adds a test to make sure that's the case. Bug: 1016655 Change-Id: I32476ece7dd80c7366230a456d5e9d8210355115 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2119457Reviewed-by:
Thanh Nguyen <thanhdng@chromium.org> Commit-Queue: Tony Yeoman <tby@chromium.org> Cr-Commit-Position: refs/heads/master@{#754770}
-
Simon Que authored
R=agable@chromium.org, tikuta@chromium.org Bug: 1063727 Change-Id: I477b1c06e0b0993f7b7b5caff8b66dcee32cef8b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2127993Reviewed-by:
Takuto Ikuta <tikuta@chromium.org> Commit-Queue: Simon Que <sque@chromium.org> Cr-Commit-Position: refs/heads/master@{#754769}
-
Paul Moy authored
The test comments for DeviceCommandRunRoutineJobTest were inside the tests themselves. They should be above the test. Bug: chromium:1066251 Change-Id: I6397f37dfd292a41ae27e8efb868bd3c0b2f1aea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128929Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Paul Moy <pmoy@chromium.org> Cr-Commit-Position: refs/heads/master@{#754768}
-
Tommy C. Li authored
This flag never felt very satisfying, and has long since been abandoned. The "Always Show Full URLs" context menu option is the direction we want to go instead. Bug: 906223 Change-Id: I9dac9207726a4352fe238cdfc0e16f172f193b6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128933Reviewed-by:
manuk hovanesian <manukh@chromium.org> Commit-Queue: Tommy Li <tommycli@chromium.org> Cr-Commit-Position: refs/heads/master@{#754767}
-
DongJun Kim authored
This CL migrates the remaining comparisons involving an ASCII literal from DeprecatedEqualIgnoringCase to EqualIgnoringASCIICase. In case of SanitizeValue() in "color_input_type.cc", Only ASCII (#0-9) and (A-F) characters are involved (not S or K) in the right hand side, this is effectively not a behavior change. Also this changes are potentially author-facing, but We’ve optimistically made them without any additional tests based on Rick Byers’ reasoning on blink-dev [1]. [1]https://groups.google.com/a/chromium.org/d/msg/blink-dev/sFOpNuQ91UU/3u1HxbnQCQAJ Bug: 627682 Signed-off-by:
DongJun Kim <djmix.kim@samsung.com> Change-Id: I55afbc42c98ce105a7f94aa572ebb389115f619b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2108240Reviewed-by:
Kent Tamura <tkent@chromium.org> Reviewed-by:
Frédéric Wang <fwang@igalia.com> Cr-Commit-Position: refs/heads/master@{#754766}
-
Krishna Govind authored
TBR=benmason@chromium.org Change-Id: I5de08ca3e14ff9fb2ced8a209427081b026c219f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128837 Commit-Queue: Krishna Govind <govind@chromium.org> Reviewed-by:
Krishna Govind <govind@chromium.org> Cr-Commit-Position: refs/heads/master@{#754765}
-
Johann authored
Add the -2x version of the test that has already been marked flaky. BUG=chromium:1065335 Change-Id: I4dfbeabe3ca966f50350852687ff66dc96171473 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2127992Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Commit-Queue: Johann Koenig <johannkoenig@google.com> Cr-Commit-Position: refs/heads/master@{#754764}
-
Ian Kilpatrick authored
Previously we just passed in the containing block size, however this was incorrect for the following case: <div style="position: relative; height: 200px;"> <div style="position: absolute; top: 0; bottom: 100px;"> <canvas width=1 height=1 style="height: 100%;"></canvas> </div> </div> This pre-calculates the block-size of the OOF-positioned element, and pass it into the NGBlockNode::MinMaxSizes pass. Change-Id: I897dc6f9c157bfa1ae63f9821cdb6ed03a218322 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2122854 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Aleks Totic <atotic@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#754763}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/adc61409cbf9..1dcb54c744c7 Created with: gclient setdep -r src-internal@1dcb54c744c7 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: If7e14805192702e8d39ecb0c36d38c8d626629ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128852Reviewed-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@{#754762}
-
Tom Anderson authored
On Linux, this is a blocking call that makes a round trip to the X server. On my machine (with a local X server), this call usually takes over 1ms (and much longer for a remote server!). This call gets made on every mouse motion event in the web contents, and in many other cases like tab dragging and DND. The issue is that value_or() was added in [1] which always calls GetCursorLocation(), even when the cached cursor location is available. [1] https://chromium-review.googlesource.com/c/chromium/src/+/2104428 BUG=None R=sky Change-Id: If2d0fd4bfb62927e4a408c4f3d5ccf72da8a0b81 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128941 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Peter Kasting <pkasting@chromium.org> Auto-Submit: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#754761}
-
Bettina authored
The change password button card does not exist anymore on chrome://settings page thus the method to handle this nonexistent action will never be called. The card was removed in crbug/889936. Bug: 991764 Change-Id: Icee609a1d2e324e731cf25daaf875c704720db57 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2108636 Commit-Queue: Bettina Dea <bdea@chromium.org> Reviewed-by:
Christopher Thompson <cthomp@chromium.org> Reviewed-by:
Daniel Rubery <drubery@chromium.org> Cr-Commit-Position: refs/heads/master@{#754760}
-
Wez authored
Remove the legacy Mojo-based fuchsia.web.MessagePort bridge implementations, which are no longer used. Bug: 803242 Change-Id: Ieb93f483586c10f72dadc9195212836bf2d228aa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2124386 Auto-Submit: Wez <wez@chromium.org> Commit-Queue: Chris Hamilton <chrisha@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#754759}
-
Dale Curtis authored
We either have these in UKM or no longer need them. Fixed: 1053030 Change-Id: I1345e88eeea667631bd01e0cfdaa48150e6eec73 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2125433 Auto-Submit: Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Ilya Sherman <isherman@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#754758}
-
Lei Zhang authored
- Move several private methods out into the anonymous namespace. - Give geometry class conversion functions clearer names. - Mark FindNodeOffset() as const. - Remove unused GetDeviceScaleFactor(). Change-Id: I4ec69696cf25db88500fa733659ab0a717cc47fe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2125684 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#754757}
-
Devlin Cronin authored
Extensions used to be able to override the bookmark star view in order to provide a custom bookmark manager (this was used for the Stars extension). The extension has been deprecated and removed, and the API never launched. Clean up the remnants. When an extension overrode the bookmark shortcuts, the accelerators were given normal priority, whereas other extension accelerators are given high priority (in order to override the default shortcut in Chrome). Now, this can be simplified to have all extension shortcuts be high priority. Replace the GetAcceleratorPriority() logic with a constant, and update call sites appropriately. Bug: 894447 Change-Id: I7a87f323f4c91f8d13bed60c4f845dbe7de45ecf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2120291 Commit-Queue: Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Reviewed-by:
Mike Wittman <wittman@chromium.org> Cr-Commit-Position: refs/heads/master@{#754756}
-
Peter Kasting authored
* Eliminate a meaningless call * Factor a delegate into a utils file and use it in two tests * Prep ChromeViewsTestBase for working with AshTestViewsDelegate Bug: none Change-Id: Ib42188446c0a77400d29ab6a648f42a24d64b12b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2126095 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Wei Li <weili@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#754755}
-
Dale Curtis authored
This isn't all that useful relative to just having the profile. Fixed: 1053032 Change-Id: I320f4fc68782c37fb0e6fc5d1e14966226346f6e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2125240 Auto-Submit: Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Ilya Sherman <isherman@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#754754}
-
Morten Stenshorne authored
There were already some stubs for the 'page' property, but it couldn't be used for anything. Move it behind a runtime flag and implement it. Also add legacy layout engine support. Will add to LayoutNG once it supports printing. Bug: 1053768 Change-Id: I2b7eff133c925a67ef36db4b6fa259cf934abf75 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2126708Reviewed-by:
Anders Hartvoll Ruud <andruud@chromium.org> Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Rune Lillesveen <futhark@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#754753}
-
Dale Curtis authored
https://chromium.googlesource.com/external/github.com/videolan/dav1d.git/+log/c8aaddeaf3ea..63f96a1f9b5e $ git log c8aaddeaf..63f96a1f9 --date=short --no-merges --format='%ad %ae %s' 2020-03-29 ltrudeau const correctness in itx_1d 2020-03-28 ltrudeau const correctness msac 2020-03-27 ltrudeau const correctness in obu.c 2020-03-26 janne-vlc meson/x86: add option to disable AVX-512 asm 2020-03-26 ltrudeau const correctness in picture.c 2020-03-25 ltrudeau Extract sub_h4 out of inner loop 2020-03-15 martin arm64: ipred: Add NEON implementation of ipred for 16 bpc 2020-03-22 martin checkasm: ipred: Test and benchmark FILTER_PRED separately for 10 and 12 bpc 2020-03-16 martin arm: ipred: Prepare for 16 bpc 2020-03-16 martin arm: ipred: Remove stray leftover instructions 2020-03-24 martin arm64: ipred: Integrate aggregation into the first pass of cfl_ac 2020-03-23 martin arm64: ipred: Use rounded shifts instead of a separate addition 2020-03-23 martin arm64: ipred: Do shifts on only half the register width when possible 2019-11-13 martin arm64: ipred: Avoid data dependencies with consecutive dup instructions 2019-11-13 martin arm64: ipred: Remove a superfluous postincrement 2020-03-25 rsbultje x86: add AVX2 SIMD for ipred.cfl_ac[444] 2020-03-25 rsbultje checkasm: add proper restrictions for h/w_pad in ipred.cfl_ac[444/422] 2020-03-25 rsbultje x86: add SSSE3 SIMD for generate_grain_uv_{422,444} 2020-03-24 rsbultje x86: add AVX2 SIMD for generate_grain_uv_{422,444} 2020-03-24 ltrudeau Clean up dav1d_ref_create 2020-03-24 ltrudeau const correctness in thread_task 2020-03-24 ltrudeau Make insert_border src pointer const 2020-03-24 hugo crossfiles: android: Remove misleading comment 2020-03-24 hugo crossfiles: android armv7: Target API 16 2020-03-24 hugo crossfiles: android: Remove hardcoded c_args 2020-03-23 hugo ci: Add android jobs with artifacts on tags 2020-03-20 hugo ci: Add android configs 2020-03-23 hugo package: Add android crossfiles 2020-03-22 me Add crosscompile config files for 32, 64-bit Windows and 32-bit Linux 2020-03-22 martin Add a cast to avoid MSVC warning 2020-03-21 janne-vlc meson/android: undefine _FILE_OFFSET_BITS if fseeko is not available 2020-03-20 rsbultje Merge fix_mv{_int,}_precision() into get_gmv_2d() 2020-02-01 rsbultje Use union refmvs_pair { mv mv[2]; uint64_t n; } for MV pairs 2020-03-19 rsbultje Rewrite refmvs.c 2020-03-09 jamrial lib: restructure the internal implementation of the decode API 2020-03-21 janne-vlc android/arm: do not use fseeko in library code 2020-03-11 jamrial headers: partially revert a recent change to Dav1dLogger doxy 2020-03-07 code CI: Only deploy documentation for master branch 2020-03-08 sledru Fix a typo, only need two l! 2020-03-07 jamrial headers: add missing doxy to some Dav1dSettings fields 2020-03-07 jamrial headers: split some public fields into separate lines and document them 2020-03-07 code CLI: Remove additional space 2020-03-07 code CLI: Remove avx512 from help text 2020-03-07 thresh CI: add examples job build 2020-03-06 thresh examples: fail when SDL is not found 2020-03-06 thresh CI: Add documentation CI job 2020-03-06 thresh CI: Deduplicate and template jobs 2020-03-06 thresh doc: search for dot as it's needed to build doxygen documentation 2020-03-06 jbeich examples: chase cacc8e350c40 2020-03-05 jb Update NEWS for 0.6.0 Created with: roll-dep src/third_party/dav1d/libdav1d TBR=tguilbert Change-Id: I1a8213fdc15174348316ed6beb1824beb957b989 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128588 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
Thomas Guilbert <tguilbert@chromium.org> Cr-Commit-Position: refs/heads/master@{#754752}
-
Reilly Grant authored
In r604873 support for revoking USB permission in real time was added but broke this tab indicator behavior by closing the mojo::Receiver for the UsbDeviceClient interface on device disconnection without updating the tab indicator state. This change fixes that behavior by having WebUsbServiceImpl track the open state of each UsbDevice pipe it creates and updating the tab indicator state if one of them is forcibly closed while the device is open. This change allows connection state tracking in UsbTabHelper to be simplified. Additional unit tests for this behavior have been added. Bug: 1064467 Change-Id: I9747d48428fc3daaf921b6763060ba16007004ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2122461Reviewed-by:
Ovidio de Jesús Ruiz-Henríquez <odejesush@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Commit-Queue: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#754751}
-
Sergei Datsenko authored
This reverts commit 65c5d4c4. Reason for revert: Flakes are caused by some unrelated crash lingering somewhere in DWriteFontLookupTableBuilder Original change's description: > Disable NativeMessagingLaunchApiTest.InvalidConnectId on Win dbg. > > TBR=dbertoni@chromium.org > BUG:1065344 > > Change-Id: Ib760d8263dc8cdd75c750a07770244a5e3ff779b > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2124311 > Reviewed-by: Tim Schumann <tschumann@chromium.org> > Commit-Queue: Tim Schumann <tschumann@chromium.org> > Auto-Submit: Tim Schumann <tschumann@chromium.org> > Cr-Commit-Position: refs/heads/master@{#753973} TBR=tschumann@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Change-Id: I96f1a1cc871ac98c469f2a0a47fc7b4698ebdc25 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2128029Reviewed-by:
Sergei Datsenko <dats@chromium.org> Commit-Queue: Sergei Datsenko <dats@chromium.org> Cr-Commit-Position: refs/heads/master@{#754750}
-
Kevin Ellis authored
Web animation API calls can manipulate timing properties. The values from API calls override their corresponding CSS properties values. Specifically, calls to effect.updateTiming(timing_options) override any property that is included in timing_options. Replacing the animation effect, overrides all timing properties. Next step: Fix handling of overridden keyframes. Bug: 1058731 Change-Id: I351ebf535511c11da0d515bf2e24b6435247d892 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2120734 Commit-Queue: Kevin Ellis <kevers@chromium.org> Reviewed-by:
Robert Flack <flackr@chromium.org> Cr-Commit-Position: refs/heads/master@{#754749}
-