- 17 Jul, 2019 40 commits
-
-
Ryan Sleevi authored
With the introduction of QuicParams, it's now possible to default-construct a QuicParams. However, it's not self-documenting what those defaults are. As many of them are actually constants from the header themselves, align the class to initialize in-place, making it more obvious. This also updates the various time-delta based parameters of QuicParams to use base::TimeDelta, making it easier to ensure safe math, while freeing callers from needing to know about whether the units were _seconds or _milliseconds. Several members of the class already followed this pattern, this just aligns all of them. Bug: None Change-Id: Id1661af6736740dd470d713843d37b2af9b7134a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707095Reviewed-by:
Ryan Hamilton <rch@chromium.org> Reviewed-by:
Nick Harper <nharper@chromium.org> Commit-Queue: Ryan Sleevi <rsleevi@chromium.org> Cr-Commit-Position: refs/heads/master@{#678442}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/a552be46f95c..97028a5397fd git log a552be46f95c..97028a5397fd --date=short --no-merges --format='%ad %ae %s' 2019-07-17 yyanagisawa@chromium.org Revert "goma_util: Set default goma PLATFORM to 'chromeos' and force update." Created with: gclient setdep -r src/third_party/chromite@97028a5397fd 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@google.com Change-Id: I0fb2e88b2234b19fcf028cbcf35fd38066bf099b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707059Reviewed-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@{#678441}
-
Harsh Patel authored
Address rewriter rules are now compressed grit resources that are uncompressed by address_rewriter.cc. This results in binary size savings of about ~33kb. Bug: 958792 Change-Id: Id39c04c20027b9663cd7f6ed6e56aa96a368c513 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1695815 Commit-Queue: Harsh Patel <harshpa@google.com> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Dominic Battré <battre@chromium.org> Reviewed-by:
Sam Maier <smaier@chromium.org> Cr-Commit-Position: refs/heads/master@{#678440}
-
Vladimir Levin authored
This patch adds a display locking fuzzer with the wpt tests as the corpus. This is using a content fuzzer base to help with the loading, and rafs a few times depending on input. R=chrishtr@chromium.org, rakina@chromium.org Change-Id: I1f1f3dd5e7711158cc1f7a148c226395939cf8d0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1677008 Commit-Queue: vmpstr <vmpstr@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Rakina Zata Amni <rakina@chromium.org> Cr-Commit-Position: refs/heads/master@{#678439}
-
Ian Kilpatrick authored
This adds an additional bit to the NGInlineItemsBuilder similar to the is_empty_inline bit. This new bit is only true if we only have floats/OOF-positioned children present. Using this information the NGBlockNode::FirstChild / NextSibling implementations will either return an NGInlineNode (representing all the inline-level children) or just the first float/OOF node. Bug: 980908 Change-Id: I0d695fbfa4535861fe510d2e973622437627126f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1704317 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Emil A Eklund <eae@chromium.org> Reviewed-by:
Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#678438}
-
Anastasia Helfinstein authored
Bug: 958081 Change-Id: I1f3455e433a74faccde6b2c74f5c371cff201d90 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1666430Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Katie Dektar <katie@chromium.org> Commit-Queue: Anastasia Helfinstein <anastasi@google.com> Cr-Commit-Position: refs/heads/master@{#678437}
-
Jeffrey Kardatzke authored
We already grab the chrome log, and also grabbing the PREVIOUS log will help with diagnosing Chrome crashes. Bug: 979897 Test: Manually verified in feedback report Change-Id: If2be64ca0106097dda4693f24dac6f2e50a92e62 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1704033 Auto-Submit: Jeffrey Kardatzke <jkardatzke@google.com> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Commit-Queue: Jeffrey Kardatzke <jkardatzke@google.com> Cr-Commit-Position: refs/heads/master@{#678436}
-
Brian Geffon authored
As previously discussed this CL refactors the WorkingSetTrimmer into a mechanism concept and adds support for ChromeOS. After this CL is submitted the second step will be to refactor the existing observer into a platform specific policy pattern. Bug: 973963 Change-Id: Iacfc70a37f5b0a8519575359a6f842c2cd1f03f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1696306Reviewed-by:
Sébastien Marchand <sebmarchand@chromium.org> Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Commit-Queue: Brian Geffon <bgeffon@chromium.org> Cr-Commit-Position: refs/heads/master@{#678435}
-
Adenilson Cavalcanti authored
The portable implementation in base is nicely written and tested but could be made way faster by using SIMD and crypto instructions. Enters BoringSSL: its SHA1 implementation is highly optimized for many architectures, actively maintained and tested. It will make SHA1 *way* faster on Intel (6x), ARMv7 (8x) and ARMv8 (between 16x to 21x faster). Plus adds a performance benchmark to measure the speed (MB/s) of the hash implementation. Unfortunately, thanks to NaCL we still got keep the portable implementation around for the time being (until it is finally removed). Change-Id: Ifc4b6a82a0d36e5157b1fa6d94760c32197b570c Bug: 974341 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1661110Reviewed-by:
Adenilson Cavalcanti <cavalcantii@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
David Benjamin <davidben@chromium.org> Commit-Queue: Adenilson Cavalcanti <cavalcantii@chromium.org> Cr-Commit-Position: refs/heads/master@{#678434}
-
Philip Rogers authored
This was missed in https://crrev.com/678392 and caused bot failures. NOTRY=true TBR=ikilpatrick@chromium.org Bug: 985079 Change-Id: I42b429dfb328e2f56cf469a036c87a675108e185 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706784Reviewed-by:
Philip Rogers <pdr@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/master@{#678433}
-
Khushal authored
When downgrading the GL version exposed to skia, we only override the GL version string. Also override the GLSL version string to ensure it is consistent with exposed GL version. R=piman@chromium.org Bug: 978354 Change-Id: I7863e627ce32863f796dd708f866aaab9d321a4b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1703267 Commit-Queue: Khushal <khushalsagar@chromium.org> Auto-Submit: Khushal <khushalsagar@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Cr-Commit-Position: refs/heads/master@{#678432}
-
Lei Zhang authored
Linux/Android has a PrintPagesNative() that is only slightly different from the Win/Mac one. Merge them and get rid of print_render_frame_helper_linux.cc. Change-Id: I3e8cc83fc8043753b6549e5df97854382fdfc1e4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706029 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Cr-Commit-Position: refs/heads/master@{#678431}
-
Stephen Chenney authored
The test was waiting on a compositor frame, but not hit test data. This change converts it to use the HitTestRegionObserver to directly detect hit test region availability. Bug: 876323 Change-Id: I394b333da42acaa36cb957037ff60907dcc8a7bc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707168 Auto-Submit: Stephen Chenney <schenney@chromium.org> Commit-Queue: David Bokan <bokan@chromium.org> Reviewed-by:
David Bokan <bokan@chromium.org> Cr-Commit-Position: refs/heads/master@{#678430}
-
Lei Zhang authored
In https://crrev.com/560879, PrintRenderFrameHelper::PrintPagesNative() started to consider the scale factor. The Linux version of PrintPagesNative() applied it consistently to every page using GetScaleFactor(), but the Windows/Mac version of PrintPagesNative() is missing a GetScaleFactor() call for the first page. The comments for patch set 15 of the CL say PrintPagesNative() is most commonly used for printing with the system dialog, where the scale factor is always 1, so the missing GetScaleFactor() call does not matter in this case. The only time when the scale factor may be set to some other value is for headless printing. Likely nobody noticed because: - Headless printing on Win/Mac is uncommon. - Headless printing with a different scale factor is uncommon. - The combination of the two is rare. Nevertheless, the missing GetScaleFactor() should be added. Change-Id: Ic4318e3bd0a9537e0170454cbdfcb7015efad237 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705643Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#678429}
-
dpapad authored
Bug: None Change-Id: I2e1e7dfe3d02c8330bc3739e19207e53215e97f1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706813 Auto-Submit: Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Esmael Elmoslimany <aee@chromium.org> Reviewed-by:
Esmael Elmoslimany <aee@chromium.org> Cr-Commit-Position: refs/heads/master@{#678428}
-
Takuto Ikuta authored
Running some tests on xenial requires libcgmanager0 and its dependencies. https://bugs.chromium.org/p/chromium/issues/detail?id=981731#c23 I confirmed this makes device_unittests passed in Xenial https://chromium-swarm.appspot.com/task?id=4617aa5f91516710 Without this, it failed like https://chromium-swarm.appspot.com/task?id=4617a6eb7134ed10 Bug: 981731 Change-Id: I638e3ca842af0a4c403e58b2bf407faef8ea55df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1699060Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Cr-Commit-Position: refs/heads/master@{#678427}
-
Kristyn Hamasaki authored
-Removed GetCustomProperties() and AppendLayerProperties() -Update ViewElement unit tests and add matched style tests -Remove any unnecessary functions from CSSAgent Change-Id: I45c048b36b476b026aa14c80366bade7487ff0af Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1700396 Commit-Queue: Kristyn Hamasaki <khamasaki@google.com> Reviewed-by:
Wei Li <weili@chromium.org> Cr-Commit-Position: refs/heads/master@{#678426}
-
Mitsuru Oshima authored
Looks like I forgot to remove it in crrev.com/c/1328709 Bug: None Test: None Change-Id: Ib2c2482861c4f5e260e447e87c1bbfbff2da189f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706390Reviewed-by:
Manu Cornet <manucornet@chromium.org> Commit-Queue: Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#678425}
-
Takuto Ikuta authored
He is suggested by Nico in https://chromium-review.googlesource.com/c/chromium/src/+/1701624/2#message-a7daaee06d9a39661d505583614efd17929dbce6 Change-Id: Ib4920a0be79cfa19707e74a79fd2ee9fe63034f3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705889Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Evgenii Stepanov <eugenis@chromium.org> Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Cr-Commit-Position: refs/heads/master@{#678424}
-
Julian Pastarmov authored
As aggreed we are going to reduce the translation set for policy documentation to the 12 primary marketing languages and the five next top ones. BUG=984053 TEST=The policy_templates target builds. Change-Id: I72acf55803ae6a7f192d63d8a8291c32f46a8a4e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705920 Commit-Queue: Julian Pastarmov <pastarmovj@chromium.org> Reviewed-by:
Michael Moss <mmoss@chromium.org> Reviewed-by:
Krishna Govind <govind@chromium.org> Cr-Commit-Position: refs/heads/master@{#678423}
-
Mia Bergeron authored
MediaPosition has been added to the media session API. This CL also makes MediaPosition available over Mojo through StructTraits. MediaPosition will later be used with MediaSessionObserver to notify when the position has changed and provide the updated position through the algorithm defined in |MediaPosition::GetPosition()|. The observer will be implemented in an upcoming CL. Bug: 985019 Change-Id: I208c4c713741550812f0263838279ba4f94eedbf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705111Reviewed-by:
Tommy Steimel <steimel@chromium.org> Reviewed-by:
Becca Hughes <beccahughes@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Mia Bergeron <miaber@google.com> Cr-Commit-Position: refs/heads/master@{#678422}
-
Daniel Cheng authored
Bug: 975688 Change-Id: Ic0514e5f8e4c6d182cbc868502dbd0565554c4eb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1703131Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Commit-Queue: Alexei Svitkine <asvitkine@chromium.org> Cr-Commit-Position: refs/heads/master@{#678421}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/3ec321d4..483d4365 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: I5ed4c63c5344ee3acca4a5292a46ac4af7691689 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707110Reviewed-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@{#678420}
-
Harry Cutts authored
To test this, we need a small modification to `ServiceProviderTestHelper` to accommodate services which register multiple methods. See go/cros-gesture-properties-dbus-design (Google internal only, sorry) for more details about the full design. Bug: 952054 Test: call the `ListProperties` method with this command (substituting a valid device ID): dbus-send --print-reply --system \ --dest=org.chromium.GesturePropertiesService \ /org/chromium/GesturePropertiesService \ org.chromium.GesturePropertiesServiceInterface.ListProperties \ int32:"$DEVICE_ID" Change-Id: I063389d24d10f27df4edcc0e0b13577acef37acd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1589448Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Harry Cutts <hcutts@chromium.org> Cr-Commit-Position: refs/heads/master@{#678419}
-
Yi Gu authored
Given that HitTestRegionObserver is now able to wait for all kinds of changes in hit test data after crrev.com/c/1689285, the observer that can only wait for transform change can be replaced / removed. Bug: None Change-Id: Ie0131be0bd98129dadc4244d25d35f1d3bff4537 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1703592Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Commit-Queue: Yi Gu <yigu@chromium.org> Cr-Commit-Position: refs/heads/master@{#678418}
-
Roberto Carrillo authored
This fixes a bug caused by running the extraction tool outside of the checkout causing an infinite loop. TBR=chanli,dpranke Change-Id: I0df6bfff84a77c43a5f5ddbcf5e879a233750d3e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707388Reviewed-by:
Roberto Carrillo <robertocn@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Roberto Carrillo <robertocn@chromium.org> Cr-Commit-Position: refs/heads/master@{#678417}
-
Xing Liu authored
This CL fixed a crash in DownloadDirectoryProvider.isDownloadOnSDCard. Bug: 984906 Change-Id: I07caa6a299f68a750d06f65156363bc75fb57a5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707169Reviewed-by:
Min Qin <qinmin@chromium.org> Commit-Queue: Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#678416}
-
Dan Harrington authored
Zine will eventually start sending some suggestions without image URLs. This change allows those articles to be retained and shown correctly on the NTP. Bug: 984787 Change-Id: I96babe4488ac75def4067d88c2023e4ec121ca65 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705021 Commit-Queue: Dan H <harringtond@chromium.org> Reviewed-by:
Justin DeWitt <dewittj@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#678415}
-
Wenjie Shi authored
As the second step for implementing usage of the Windows.Devices.Sensors WinRT API in Chromium, this CL: - Finishes the implementation of PlatformSensorProviderWinrt. - Adds more unit tests to PlatformSensorProviderWinrt. - Abstracts out the PlatformSensorReaderWin interface so it can be generically reused by both the ISensor and Windows.Devices.Sensors implementation. Verified by running unit tests. Bug: 958266 Change-Id: I71783954d4db37f6e921d9c4eaac150763382722 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1693732 Commit-Queue: Wenjie Shi <wensh@microsoft.com> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#678414}
-
Chromium WPT Sync authored
Using wpt-import in Chromium b94733f8. With Chromium commits locally applied on WPT: 250461b3 "Worker: Register a service worker just once for worker subresource interception tests" 1e9c7b68 "[Client hints] Enable ACHL persistence in content shell, refactor tests" ee7626e7 "Fixing tranferFromimageBitmap-toBlob-offscreen.html to not be flaky" 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 xlai@chromium.org, jinho.bang@samsung.com, hs1217.lee@samsung.com: external/wpt/css/geometry NOAUTOREVERT=true TBR=robertma No-Export: true Change-Id: Iff81396915a82cd2f71b3aa2450985968bda5dbe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706612Reviewed-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@{#678413}
-
Yann Dago authored
Bug: 984219, 984251, 985012 Change-Id: Ied33dc059986e57e66dbb32614b4059faf9e5655 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707111Reviewed-by:
Jesse Doherty <jwd@chromium.org> Reviewed-by:
Julian Pastarmov <pastarmovj@chromium.org> Commit-Queue: Yann Dago <ydago@chromium.org> Cr-Commit-Position: refs/heads/master@{#678412}
-
Darwin Huang authored
clipboard_representation_index was off-by-one due to the peculiarity of the order in which functions were called in the Async Clipboard Write structure. Splitting WriteNextRepresentation() to also have a function invoked after write, allows this confusing inconsistency to be avoided. Bug: 981006 Change-Id: I8e84b66aa769c6597a55b77cf9ca43aebce92cdb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1700483 Commit-Queue: Darwin Huang <huangdarwin@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Auto-Submit: Darwin Huang <huangdarwin@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#678411}
-
Xiang Ji authored
Change-Id: I054350b94190f600df7d3de200f89dfd5accddbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1702863Reviewed-by:
Julian Pastarmov <pastarmovj@chromium.org> Commit-Queue: Xiang Ji <jxiang@google.com> Cr-Commit-Position: refs/heads/master@{#678410}
-
Shakti Sahu authored
Bug: 984907 Change-Id: If53f96e81bf021e610c5e1141a5a4623495e5197 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706873Reviewed-by:
Min Qin <qinmin@chromium.org> Commit-Queue: Shakti Sahu <shaktisahu@chromium.org> Cr-Commit-Position: refs/heads/master@{#678409}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/8c31f2bf7f15..fad9fbc3c4da git log 8c31f2bf7f15..fad9fbc3c4da --date=short --no-merges --format='%ad %ae %s' 2019-07-17 egdaniel@google.com Revert "First draft of Dawn backend: clears are working." 2019-07-17 fmalita@chromium.org [skottie] De-dupe sequential cubic mappers 2019-07-17 egdaniel@google.com Remove RG32F color type and pixel config. 2019-07-17 reed@google.com change colorfilter signature back to just inout color 2019-07-17 senorblanco@chromium.org First draft of Dawn backend: clears are working. 2019-07-17 fmalita@chromium.org [skottie] Fix default cubic controls detection Created with: gclient setdep -r src/third_party/skia@fad9fbc3c4da 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=nifong@google.com Change-Id: I98f024d17c534aece409d6521b4ae0bd337c3a1f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706361Reviewed-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@{#678408}
-
Julian Pastarmov authored
The grd reader is invoked from _GetGrdMessages with defines which specify "chromium" build. Drive-by fix for the MockFile to support basename on Windows. BUG=984910 TEST=A modified grd fail doesn't trip the presubmit run. Change-Id: I1b30dcaf8b91d40292e631ba854b4f0dfa54de69 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705799Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Commit-Queue: Julian Pastarmov <pastarmovj@chromium.org> Cr-Commit-Position: refs/heads/master@{#678407}
-
Anton Bikineev authored
Bug: 967258 Change-Id: I322882558aed37154f2cb2ff655b11c8337b10a0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1702265Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Michael Lippautz <mlippautz@chromium.org> Commit-Queue: Anton Bikineev <bikineev@chromium.org> Cr-Commit-Position: refs/heads/master@{#678406}
-
Miguel Casas authored
crrev.com/c/1600950 update the calls to |decoder_| but didn't update the corresponding unit tests expectations. Since |mock_decoder_| is a nice mock, nothing broke. This CL updatese |mock_decoder_|s expectations and makes MockAcceleratedVideoDecoder a StrictMock. Bug: 984836 Test: media_unitests on any cros target, including CQ bots. Change-Id: I339b657502ea27702ce8c90b94c0f9d847e97b81 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706553Reviewed-by:
Andres Calderon Jaramillo <andrescj@chromium.org> Commit-Queue: Miguel Casas <mcasas@chromium.org> Auto-Submit: Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#678405}
-
John Lee authored
With crrev.com/650435, focus and other accessibility attributes were moved to the radio button itself instead of the host element. Change-Id: I42cf86b2ea4bb67cb55add00dc6602e692a8800c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1706909Reviewed-by:
Esmael Elmoslimany <aee@chromium.org> Commit-Queue: John Lee <johntlee@chromium.org> Cr-Commit-Position: refs/heads/master@{#678404}
-
Sunny Sachanandani authored
HIGH_PRIORITY_CLASS uses priority level 10 for THREAD_PRIORITY_LOWEST, which is higher than THREAD_PRIORITY_NORMAL (8) used by most Chrome threads. ABOVE_NORMAL_PRIORITY_CLASS should give us the same benefit without the drawbacks. This only affects the GpuProcessHighPriorityWin experiment. Bug: 965778 Change-Id: I59fa93bd534bfe0e0c2014735bb7d13e82715f6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705575Reviewed-by:
Zhenyao Mo <zmo@chromium.org> Commit-Queue: Sunny Sachanandani <sunnyps@chromium.org> Auto-Submit: Sunny Sachanandani <sunnyps@chromium.org> Cr-Commit-Position: refs/heads/master@{#678403}
-