- 03 Oct, 2019 40 commits
-
-
Lei Zhang authored
It's unused. Change-Id: Ic108d486fac11e5d5ee7615c076d78173a4352d0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835175Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Tao Wu <wutao@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#702478}
-
Matt Menke authored
A lot of these were left around after code was updated to use the network service. This CL particularly focuses on test_url_fetcher_factory.h includes. This CL also removes "using base::TimeDelta" from url_request_test_util.h, which also affects a couple files with the unnecessary includes. Bug: None Change-Id: Id3f104bf43fd935c692497dd0e00e669271323d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836512Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Eric Roman <eroman@chromium.org> Reviewed-by:
Luum Habtemariam <luum@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#702477}
-
Matt Menke authored
The unpredictable nature of when the favicon fetch occurs was causing the fetch to fail. This CL prefetches it, so it will be cached. Bug: 1006637 Change-Id: I2d16fa80b3ffe05c1cc6e21437c9a8a95dbd8bd0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835092 Commit-Queue: Matt Menke <mmenke@chromium.org> Reviewed-by:
Tarun Bansal <tbansal@chromium.org> Reviewed-by:
Alex Ilin <alexilin@chromium.org> Cr-Commit-Position: refs/heads/master@{#702476}
-
Jakob Gruber authored
With the recent port of the streams API to C++ [0], the natives blob is now unused and will shortly be removed. V8 API related to the natives blob is being deprecated [1] and will be removed in the next release. This CL is the minimal change to keep up with these API deprecations. In follow-up work, all other infrastructure related to the natives blob should be removed. [0] https://crrev.com/c/1746118 [1] https://crrev.com/c/1824944 Bug: v8:7624 Change-Id: I26e409660d177035cdb5d92c317fc2e0174be2f7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834352Reviewed-by:
Lei Zhang <thestig@chromium.org> Reviewed-by:
Ross McIlroy <rmcilroy@chromium.org> Auto-Submit: Jakob Gruber <jgruber@chromium.org> Commit-Queue: Jakob Gruber <jgruber@chromium.org> Cr-Commit-Position: refs/heads/master@{#702475}
-
Matt Menke authored
A bunch of tests were instantiating them but not using them, so also remove the classes from those tests. TBR=lambroslambrou@chromium.org TBR=rogerm@chromium.org TBR=dvadym@chromium.org TBR=hendrich@chromium.org Bug: 1010491 Change-Id: I0528cd61f69e0010eefa45f5c65edf63a09fc6d7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834926 Commit-Queue: Matt Menke <mmenke@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Reviewed-by:
Jian Li <jianli@chromium.org> Reviewed-by:
Eric Roman <eroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#702474}
-
Jaeyong Bae authored
This patch means removing variable unused. string16Container looks like used in legacy code. Bug: None Change-Id: I17867cd8c48dd13c1fb46c3376d5424f5ccacf3f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1828665Reviewed-by:
sebsg <sebsg@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Jaeyong Bae <jdragon.bae@gmail.com> Cr-Commit-Position: refs/heads/master@{#702473}
-
Xing Liu authored
Starts from Android N, notification by default has the app name, so the title should not be same as the app name. This CL removes the title as the content text already has enough context. Bug: 875906 Change-Id: I24b222377d87dc348a5cd39eed7c9eeba2824f02 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1830174Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Commit-Queue: Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#702472}
-
Xianzhu Wang authored
This is a follow-up of https://chromium-review.googlesource.com/c/chromium/src/+/1832929 which suffered from unstable try bots and created incomplete rebaselines. TBR=huangs@chromium.org Change-Id: I3a2a01cec46caa8e0eb8ed4df3228bff89e07dac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836986Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#702471}
-
Peter Wen authored
Use fake module support added to device API: https://crrev.com/c/1811762 Bug: 1000749 Change-Id: I9810e8fea7b1ab1359693b8bc8110965416395bd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835218 Commit-Queue: Peter Wen <wnwen@chromium.org> Auto-Submit: Peter Wen <wnwen@chromium.org> Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#702470}
-
Nina Satragno authored
Now that the WebAuthn WebDriver API has landed on the spec [1], update the implementation to match it closely: * Add isUserVerified flag to AddVirtualAuthenticator * hasResidentKey and hasUserVerification are optional and default to false. [1] https://w3c.github.io/webauthn/#sctn-automation-add-virtual-authenticator Bug: 922572 Change-Id: I884988c15e4a46ab5aad2395c76dca284386dc7e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837477Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: Nina Satragno <nsatragno@chromium.org> Cr-Commit-Position: refs/heads/master@{#702469}
-
David Schinazi authored
https://quiche.googlesource.com/quiche.git/+log/d85976f86ec3..67840e16ec81 $ git log d85976f86..67840e16e --date=short --no-merges --format='%ad %ae %s' 2019-10-01 dschinazi Disable SupportsAntiAmplificationLimit to avoid infinite loop 2019-10-01 dschinazi Prevent fuzzer from sending version negotiation packets 2019-10-01 dschinazi Prevent fuzzer from sending unsupported RETRY packets 2019-10-01 bnc Record header compression ratio. 2019-09-30 bnc Add QPACK logging for each encoded header list to track whether encoding is blocked. 2019-09-30 fkastenholz Add comments explaining why some tests are only for IETF QUIC or Google QUIC. 2019-09-30 wub gfe-relnote: Default-initialize QUIC BBRv2's inflight_hi_headroom from flags. No behavior change. 2019-09-29 wub Internal QUICHE change 2019-09-27 dschinazi Allow parsing PROX packets with length prefix 2019-09-27 nharper Use 16-byte auth tags when initial obfuscators are used 2019-09-27 zhongyi gfe-relnote: (n/a) comments only 2019-09-27 renjietang Add debug visitor for SETTINGS sent. 2019-09-27 wub gfe-relnote: For QUIC BBRv2: 1) Don't grow inflight_hi unless it's fully used, and 2) Cap inflight_lo in PROBE_CRUISE. Protected by --gfe2_reloadable_flag_quic_bbr2_fix_inflight_bounds. 2019-09-27 bnc Optimize QpackBlockingManager::blocking_allowed_on_stream(). 2019-09-27 bnc Fix two blocking_allowed_on_stream() calls in QpackBlockingManagerTest.BlockingAllowedOnStream. Created with: roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src Change-Id: I614c1c5d4b615fc7a6c8cd7411cacdeb0eb209c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836595 Auto-Submit: David Schinazi <dschinazi@chromium.org> Commit-Queue: Nick Harper <nharper@chromium.org> Reviewed-by:
Nick Harper <nharper@chromium.org> Cr-Commit-Position: refs/heads/master@{#702468}
-
Ken MacKay authored
The mixer service receiver allows other processes to communicate directly with the mixer. See https://docs.google.com/document/d/1t4ef1yVKcDRwEGrVxUGDmjtSEjgtf5bT9g92dXrxFWI Bug: internal b/127963522 Test: on device Merge-With: eureka-internal/317379 Change-Id: If9f4a39610f0a231041c431fc4785ec0a86c98ff Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1829463 Commit-Queue: Kenneth MacKay <kmackay@chromium.org> Reviewed-by:
Yuchen Liu <yucliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#702467}
-
Ben Pastene authored
Bug: 1005370 Change-Id: I84369f3e56b5ed94a9064ad858f2944bc9885d81 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1829240Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#702466}
-
Morten Stenshorne authored
We were already preventing breaks inside line boxes, but we also need to do the same for certain types of block nodes, such as replaced content. Add a unit test for break-before:avoid before monolithic block level content, since the existing web_tests corpus has no break-between avoidance tests at all. Bug: 829028 Change-Id: I2240f96714e6dd760fac4f86089a0c8e6bf346ac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836492 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#702465}
-
Xiaohui Chen authored
It is possible that more than one states indicate ready state, e.g. |VISIBLE|. Bug: None Test: locally run multiple tast tests in sequence Change-Id: I2ad3a89e7bc0839c60a78f6b3c4360ff05b27a35 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836022 Commit-Queue: Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
Achuith Bhandarkar <achuith@chromium.org> Cr-Commit-Position: refs/heads/master@{#702464}
-
Peter Boström authored
Restores a missing rectangular highlight to the download item. The transparent button is often hosting the InkDrop but previously had no path defined. Bug: chromium:1007546 Change-Id: Ib0dffc72be2e0b3db33569538dde38391c62a8b4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837978 Commit-Queue: Peter Boström <pbos@chromium.org> Commit-Queue: Collin Baker <collinbaker@chromium.org> Auto-Submit: Peter Boström <pbos@chromium.org> Reviewed-by:
Collin Baker <collinbaker@chromium.org> Cr-Commit-Position: refs/heads/master@{#702463}
-
Nina Satragno authored
(Almost) all aspects of webauthn are owned by fido/OWNERS and Kim is OOO. Bug: 1010934 Change-Id: I1e13d357bcc5f5b4168126d60aa92a4c9a10faa5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837873 Auto-Submit: Nina Satragno <nsatragno@chromium.org> Commit-Queue: Martin Kreichgauer <martinkr@google.com> Reviewed-by:
Martin Kreichgauer <martinkr@google.com> Cr-Commit-Position: refs/heads/master@{#702462}
-
Jesse Schettler authored
This ensures a profile is obtained even when outside a user window, which resolves an issue that occurred when printing from ARC apps using the ArcPrintService. Bug: 1010228 Test: Print from an ARC app using an ArcPrintService printer Change-Id: I4fa5759519aef11773045ff79612342583cf66e0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836984 Commit-Queue: Jesse Schettler <jschettler@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#702461}
-
Ahmed Fakhry authored
On switching to a different desk, we attempt restoring snapped windows into splitview. But while being on another desk, orientation may change in such a way that makes the snapped windows unsnappable in splitview. Snapping those back when we attempt restoring splitview would hit a DCHECK. This CL fixes this issue. BUG=1010115 TEST=Added new test that crashes without the fix. Change-Id: I41c4b47a78fc2fbb0ebd52cd139bf56881569e5f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834901 Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#702460}
-
Robert Liao authored
BUG=914910 Change-Id: I46198de26b7963d31f216a2355bba0d8a4e6999a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837751 Auto-Submit: Robert Liao <robliao@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#702459}
-
Allen Bauer authored
Reland of https://crrev.com/c/1825620 Change-Id: Iae413f777b3fdb094cf85d49e6110321628125e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836985Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Auto-Submit: Allen Bauer <kylixrd@chromium.org> Cr-Commit-Position: refs/heads/master@{#702458}
-
Peter Boström authored
TBR=yoichio@chromium.org Bug: chromium:1010670 Change-Id: I6aa22e2e81c024e17dddbd3644033918e06220ac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836989 Commit-Queue: Peter Boström <pbos@chromium.org> Reviewed-by:
Peter Boström <pbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#702457}
-
Matt Mueller authored
CertVerifierWithTrustAnchorsTest: call SupportsAdditionalTrustAnchors on the correct CertVerifyProc implementation. In the current implementation this isn't critical, since CertVerifyProcChromeOS just defers the SupportsAdditionalTrustAnchors to the base class CertVerifyProcNSS which is what CertVerifyProc::CreateDefault would create. Also clean up some uses of "new". Change-Id: I3f2ab343e032b415d676cc5ced707e49209add4c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836633Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Maks Orlovich <morlovich@chromium.org> Commit-Queue: Matt Mueller <mattm@chromium.org> Cr-Commit-Position: refs/heads/master@{#702456}
-
Samuel Huang authored
The test is failing for Linux ChromiumOS MSAN, perhaps due to code path where |history_db_task_id_| is used without initialization. TBR=tommili@chromium.org Bug: 1010944 Change-Id: Ic5f4fb55155b44d58c415ab58c5c339fcfe7a77a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837974Reviewed-by:
Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#702455}
-
Lei Zhang authored
Use more C++11 and modern commenting style. Replace a NOTREACHED() with a DCHECK. Change-Id: Iebe7dffe39f5c9391cfce6e151870448fb29b68f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837119Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#702454}
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/0da52f2d92c3..3fd022ef6041 git log 0da52f2d92c3..3fd022ef6041 --date=short --no-merges --format='%ad %ae %s' 2019-10-03 enga@chromium.org Validate injected errors are not NoError Created with: gclient setdep -r src/third_party/dawn@3fd022ef6041 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/dawn-chromium-autoroll Please CC cwallez@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: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 Bug: chromium:1010703,chromium:1004368 Change-Id: Ibeea6c666a7b82f17fa1cd64f98bd9e6f8db716e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837189Reviewed-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@{#702453}
-
Tommy Steimel authored
This CL changes MediaDialogView to use a layer and adds rounded corners to that layer. This prevents an issue where the ScrollView was creating a child layer that ignored the rounded corners of the dialog frame. Bug: 992869 Change-Id: Ie539038400ef4a8bc170a5c8a4d446f2b4ca360c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1832663Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Commit-Queue: Tommy Steimel <steimel@chromium.org> Cr-Commit-Position: refs/heads/master@{#702452}
-
Fred Mello authored
Solution to lazily instantiate the InstallEngine and avoid calling the CommandLine will fix the problem for the VrModule's early call to isInstalled() [see ChromeApplication.java (startActivity)]. Related to: https://chromium-review.googlesource.com/c/chromium/src/+/1813520 Bug: 1010887, 1005802 Change-Id: I9d217abb0f9e09f97054fe0d3c6afee59aac198c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837657 Commit-Queue: Fred Mello <fredmello@chromium.org> Reviewed-by:
Peter Wen <wnwen@chromium.org> Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#702451}
-
Brian White authored
Adds expires_after attribute for 122 histograms that do not already have one. The date will get pushed out automatically if significant use is detected. Change-Id: I225cf94567c2b9824f9f175c0757a92e0a5a605b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837353Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Brian White <bcwhite@chromium.org> Commit-Queue: Brian White <bcwhite@google.com> Cr-Commit-Position: refs/heads/master@{#702450}
-
Lei Zhang authored
Move away from base::Bind() and base::Callback. Use more C++11 along the way. Change-Id: I3500204987789c1ed24c9f8d7a8ee5f23a99d6c4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837117Reviewed-by:
Tommy Li <tommycli@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#702449}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/cb55010652b2..65a77757a2cb git log cb55010652b2..65a77757a2cb --date=short --no-merges --format='%ad %ae %s' 2019-10-03 robertphillips@google.com Only use GrRenderTarget for sample locations in GrGLSLProgramBuilder Created with: gclient setdep -r src/third_party/skia@65a77757a2cb 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 rmistry@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 TBR=rmistry@google.com Bug: None Change-Id: Ied19cf4a4adfc0feb0e4b193c503b7887dcf86cf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837190Reviewed-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@{#702448}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/d20a3158b1ca..830565958d2b git log d20a3158b1ca..830565958d2b --date=short --no-merges --format='%ad %ae %s' 2019-10-03 dproy@chromium.org Use chromium build on linux for dev server tests Created with: gclient setdep -r src/third_party/catapult@830565958d2b If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/catapult-autoroll Please CC rmhasan@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_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=rmhasan@google.com Bug: chromium:973847 Change-Id: I24eeb0a8cd6a3d3c135ba4a5f93e47c7ac8fd53f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837852Reviewed-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@{#702447}
-
Etienne Pierre-doray authored
This CL implements - Methods to Join a job task source _ Logic to signal a joining thread - JobHandle - PooledTaskRunnerDelegate::RemoveJobTaskSource called from Join. Bug: 839091 Change-Id: Ida5463cd724ba5f07bfa5c31fb8952af592e078a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1752637 Commit-Queue: Etienne Pierre-Doray <etiennep@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#702446}
-
Fred Mello authored
Calling cached version instead. Related to: https://chromium-review.googlesource.com/c/chromium/src/+/1813520 Bug: 1010895, 1005802 Change-Id: I0dd35b3204da1712e92dba0ac1c711a8b522bd68 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837408Reviewed-by:
Tibor Goldschwendt <tiborg@chromium.org> Reviewed-by:
Peter Wen <wnwen@chromium.org> Commit-Queue: Fred Mello <fredmello@chromium.org> Cr-Commit-Position: refs/heads/master@{#702445}
-
Brandon Wylie authored
I've simplified the padding logic for the dse icon experiment, so there's no need for specialty logic. Bug: 1008496 Change-Id: Ib2a88b3b47b37eb88a59f345c8be6d56a5464b6b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1828126 Commit-Queue: Brandon Wylie <wylieb@chromium.org> Reviewed-by:
Ender <ender@google.com> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#702444}
-
kylechar authored
There are threading problems if TestGpuServiceHolder is reused between tests that reset the global time override. There is a race between reading the current time and base::subtle::ScopedTimeClockOverrides changing. Bug: 1000251 Change-Id: I74e7776ea3dc0854d40fcd0fc7bb4bf0ecc5b5f8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1800483 Commit-Queue: kylechar <kylechar@chromium.org> Reviewed-by:
Jonathan Backer <backer@chromium.org> Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Cr-Commit-Position: refs/heads/master@{#702443}
-
Geoff Lang authored
* When doing deferred binds, the texture was not bound while the image was binding/copying. * Shared images were not marking the TexturePassthrough as pending a bind which generated errors later when the texture was is as a source for copying. BUG=990368 Change-Id: Ide601d8ae3e0641891d75c6cd3cba8b173491b98 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1831016 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#702442}
-
Matt Menke authored
When using an HTTPS proxy, WebSockets would always try to use an established H2 session for WebSockets, even if H2 over WebSockets was disabled. Moreover, if H2 over WebSockets was disabled, it would even use an H2 session that hadn't advertised WebSocket support. These problems were a result of only checking the HTTPS proxy server type, and not the scheme, when deciding if a request should try and use H2, and using the wrong value when telling the H2 code that only a session supporting WebSockets was needed. This CL fixes these issues. Bug: 1009612 Change-Id: Ic8ffdac454f3e079e47b8c35b1a5b4d8cac807e5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835253 Commit-Queue: Matt Menke <mmenke@chromium.org> Reviewed-by:
Adam Rice <ricea@chromium.org> Reviewed-by:
Bence Béky <bnc@chromium.org> Cr-Commit-Position: refs/heads/master@{#702441}
-
Justin Cohen authored
Bug: 1007337, 1010609 Change-Id: I37e4ed0bcedff3cbaae2ffdb30501cf78ad514fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834923 Commit-Queue: Justin Cohen <justincohen@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Auto-Submit: Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#702440}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/2328d65ab30d..1850492e30ce git log 2328d65ab30d..1850492e30ce --date=short --no-merges --format='%ad %ae %s' 2019-10-03 m.maiya@samsung.com Vulkan: Disable OES_vertex_type_10_10_10_2 on GLES 2.0 Created with: gclient setdep -r src/third_party/angle@1850492e30ce If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/angle-chromium-autoroll Please CC cwallez@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_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=cwallez@google.com Bug: None Change-Id: I24d32dbac4a08a552094d40657eb7b3218b34874 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837851Reviewed-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@{#702439}
-