- 13 Nov, 2017 18 commits
-
-
John Abd-El-Malek authored
Change-Id: I5d28f3512047871e436341f01b9bfd6e0baa2b8e Reviewed-on: https://chromium-review.googlesource.com/765575Reviewed-by:
Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#515890}
-
Darren Shen authored
We add a test for identifier normalization that covers [1]. Note that we're only testing that an <identifier> normalizes to a CSSKeywordValue (hence the simple test). Testing of which properties normalizes to CSSKeywordValue will be done in a separate test, as it is in a separate part of the spec [2]. [1] https://drafts.css-houdini.org/css-typed-om-1/#normalize-ident [2] https://drafts.css-houdini.org/css-typed-om-1/#stylevalue-normalization Bug: 774887 Change-Id: Idc2c0bb1279389e1e7fd46373bea13ac9b5dd105 Reviewed-on: https://chromium-review.googlesource.com/765550 Commit-Queue: Darren Shen <shend@chromium.org> Reviewed-by:
Bugs Nash <bugsnash@chromium.org> Cr-Commit-Position: refs/heads/master@{#515889}
-
Bugs Nash authored
Moved the generated apply* methods from StyleBuilderFunctions.cpp to the property classes for 'auto' properties which share a non custom template: - clip - column-count - column-gap - column-width - z-index Also fixed includes so that headers required for apply* functions are only included when those functions are implemented, not when they are to be declared only. Note that this patch creates duplicated logic in make_css_property_headers.py and make_style_builder.py. Since it is planned to remove style builder as part of this project I have not bothered factoring this logic out. Diff of generated files: https://gist.github.com/1bad2de3801d6d75d77e9b08c7b128f8/revisions Bug: 751354 Change-Id: I75d9a85a50771541f8c8be64c62c4dfa0796cd8a Reviewed-on: https://chromium-review.googlesource.com/760079Reviewed-by:
Renée Wright <rjwright@chromium.org> Commit-Queue: Bugs Nash <bugsnash@chromium.org> Cr-Commit-Position: refs/heads/master@{#515888}
-
John Abd-El-Malek authored
TBR=xingliu@chromium.org NOTRY=true Change-Id: I73c923f8486b611f347e914fe17545175db63970 Reviewed-on: https://chromium-review.googlesource.com/765229Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#515887}
-
yoshiki iguchi authored
Bug: 782005 Change-Id: Icd1888daf9873719bce2b4d37d7d66e31c24da66 Reviewed-on: https://chromium-review.googlesource.com/763031Reviewed-by:
Tetsui Ohkubo <tetsui@chromium.org> Commit-Queue: Yoshiki Iguchi <yoshiki@chromium.org> Cr-Commit-Position: refs/heads/master@{#515886}
-
Matt Falkenhagen authored
Bug: 688116, 532855, 486308 Change-Id: I0cda49c9072099fa706988c6a1aa789456af2c1e Reviewed-on: https://chromium-review.googlesource.com/765564Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Commit-Queue: Matt Falkenhagen <falken@chromium.org> Cr-Commit-Position: refs/heads/master@{#515885}
-
Ian Kilpatrick authored
Bug: 591099 Change-Id: I8c006a0669e056c9a779a282e30cbea6ae106eb4 Reviewed-on: https://chromium-review.googlesource.com/763581 Commit-Queue: Koji Ishii <kojii@chromium.org> Reviewed-by:
Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#515884}
-
Hayato Ito authored
This is a part of Incremental Shadow DOM. Resolve slot's assigned nodes incrementally, on-demand basis, instead of relying on UpdateDistribution phase. This functionality is guarded by IncrementalShadowDOM runtime flag. This CL also introduces the utility function used only for testing. The utility function can process "Mini-DSL" for declarative Shadow DOM. That is useful for writing a complex composed tree. Since SlotAssingmentTest is the only user of the function, it is inside of anonymous namespace. Bug: 776656 Change-Id: I3359f67eabe562261cdfe2467b17b6b5e46b3c72 Reviewed-on: https://chromium-review.googlesource.com/750941Reviewed-by:
Takayoshi Kochi <kochi@chromium.org> Commit-Queue: Hayato Ito <hayato@chromium.org> Cr-Commit-Position: refs/heads/master@{#515883}
-
chrome-release-bot authored
TBR=govind@chromium.org Change-Id: Ib42ace1d7ed6d3de071b14d50b92ed391b0cc825 Reviewed-on: https://chromium-review.googlesource.com/765588Reviewed-by:
chrome-release-bot@chromium.org <chrome-release-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#515882}
-
Renee Wright authored
Bug: Change-Id: I599d048f34df91500eee354ad65444e7d17dcdbb Reviewed-on: https://chromium-review.googlesource.com/762888Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Eric Willigers <ericwilligers@chromium.org> Reviewed-by:
Bugs Nash <bugsnash@chromium.org> Commit-Queue: Renée Wright <rjwright@chromium.org> Cr-Commit-Position: refs/heads/master@{#515881}
-
Yoshifumi Inoue authored
This patch introduces static assert to check class parameter of |LayoutMixin<T>| is |LayoutBlockFlow| or derived class to avoid misuse of |LayoutMixin<T>| for improving code health. Bug: 591099 Change-Id: I252682e62b7a23d7e8af6cdef45b6810f5750780 Reviewed-on: https://chromium-review.googlesource.com/763028 Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Reviewed-by:
Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#515880}
-
John Abd-El-Malek authored
This reverts commit 098549fc. Reason for revert: Causing a bunch of test failures, see original commit's replies for list Original change's description: > Fix an issue in download with network service. > > Download code uses frame_tree_node_id to find WebContents when browser > side navigation is enabled. The WebContents is used in UI layer code > to close the tab when the request is a download. > > > Bug: 715630, 781565 > Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation > Change-Id: Ib9490a64692027e3b16c70b77b54aceebcfcb9b7 > Reviewed-on: https://chromium-review.googlesource.com/761269 > Commit-Queue: Xing Liu <xingliu@chromium.org> > Reviewed-by: John Abd-El-Malek <jam@chromium.org> > Reviewed-by: Min Qin <qinmin@chromium.org> > Reviewed-by: David Trainor <dtrainor@chromium.org> > Cr-Commit-Position: refs/heads/master@{#515816} TBR=jam@chromium.org,dtrainor@chromium.org,qinmin@chromium.org,xingliu@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 715630, 781565 Change-Id: I5c969d11f411c5742dec2762017609db351d7a28 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Reviewed-on: https://chromium-review.googlesource.com/765388Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#515879}
-
Matt Falkenhagen authored
To help reviewing this patch first changes the test and another one will move it to external/wpt. The subject matter seems fine for WPT although the final promise_test was intended as just a crash test and Chromium's behavior is not totally matching the spec. I wrote the expectation according to my interpretation of the spec and nhiroki's TODO. Bug: 688116, 532855, 486308 Change-Id: Ia6b9b178c21691a1abca3c60c7fc38ee86ea0989 Reviewed-on: https://chromium-review.googlesource.com/761270 Commit-Queue: Matt Falkenhagen <falken@chromium.org> Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Reviewed-by:
Tsuyoshi Horo <horo@chromium.org> Cr-Commit-Position: refs/heads/master@{#515878}
-
Xiaocheng Hu authored
File core/editing/ImeTextSpanTest.cpp is a leftover after we moved IME- related files to core/editing/ime. It is no longer listed in BUILD.gn, and is identical to core/editing/ime/ImeTextSpanTest.cpp. Hence this patch removes the redundant file. Bug: 761254 Change-Id: If4227e675b2866b34ac3f505f41a98e2da06ba26 Reviewed-on: https://chromium-review.googlesource.com/764876 Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Reviewed-by:
Ryan Landay <rlanday@chromium.org> Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#515877}
-
Nicholas Verne authored
The first version of this cl/759621 was reverted because there were some instances of additional_param_names/values hidden behind build flags, not found by the default trybots. The main work here is mojo-ing IsInternalPluginAvailableForMimeType then renaming PluginInfoMessageFilter to PluginInfoHostImpl. Tbr: wfh@chromium.org Bug: 577685 Change-Id: I23f11f6567f1930189074809620c89f6c4f589dd Reviewed-on: https://chromium-review.googlesource.com/765549 Commit-Queue: Nicholas Verne <nverne@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#515876}
-
Ken Buchanan authored
Throttle OOPIFs when they are off screen or clipped. This adds a VisibilityObserver to RemoteFrames with LocalFrame parents, and sends an update across processes to the OOPIF when throttling status should change. This also fixes ScreenOrientation browser tests which has some flakiness in OOPIF tests that appears when this patch is applied. Bug: 761478 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Change-Id: I9bfb57058e534e796c23e238664a66a142be3c4a Reviewed-on: https://chromium-review.googlesource.com/719601Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Reviewed-by:
Stefan Zager <szager@chromium.org> Commit-Queue: Ken Buchanan <kenrb@chromium.org> Cr-Commit-Position: refs/heads/master@{#515875}
-
Miguel Casas-Sanchez authored
This CL cleans up a bit the order of DLOG()s and DCHECK()s, so that debug printouts are before DCHECK()s, and DCHECK()s of the current task runner go before the actual code. This CL also removes the function name from VLOGF()s because those already include it, so it's just duplicated. Also I shortened a condition if (a) return false; return true; into: return !a; TEST=No new code (except the condition simplification). Bug: 717265 Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I627b3077904a87ecd0da8f0cfbfaa7d70d232c35 Reviewed-on: https://chromium-review.googlesource.com/765109 Commit-Queue: Miguel Casas <mcasas@chromium.org> Reviewed-by:
Pawel Osciak <posciak@chromium.org> Cr-Commit-Position: refs/heads/master@{#515874}
-
Nicholas Verne authored
initialize PluginInfoPtrs. The crash happens when chrome::mojom::GetPluginInfo fails in sync mode. Then the output PluginInfoPtr is left null. We instead default initialize it with PluginInfo::New() as this is what the subsequent code expects. Bug: 783189 Change-Id: I51e25b127858b8ede79f6762f0f5e870166254d1 Reviewed-on: https://chromium-review.googlesource.com/762848Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Yuzhu Shen <yzshen@chromium.org> Reviewed-by:
Sam McNally <sammc@chromium.org> Commit-Queue: Nicholas Verne <nverne@chromium.org> Cr-Commit-Position: refs/heads/master@{#515873}
-
- 12 Nov, 2017 15 commits
-
-
Hwanseung Lee authored
merge constructor using optional keyword in CSSTransformValue and CSSTranslation Bug: 545318 Change-Id: I67fe1f7b8db1dd59689d6aa8c49938f48152c5f8 Reviewed-on: https://chromium-review.googlesource.com/763149Reviewed-by:
Darren Shen <shend@chromium.org> Commit-Queue: Hwanseung Lee <hs1217.lee@samsung.com> Cr-Commit-Position: refs/heads/master@{#515872}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/24e4cc7087bc..34922a64225b $ git log 24e4cc708..34922a642 --date=short --no-merges --format='%ad %ae %s' 2017-11-12 angle-deps-roller Roll skia/third_party/externals/angle2/ 3a9090fa0..703671e9f (9 commits) 2017-11-12 brianosman Suppress warning 4577 (noexcept used with no exception handling mechanism specified) Created with: roll-dep src/third_party/skia BUG=735497,675997 The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=brianosman@chromium.org Change-Id: I99d4906375ff3250578415f75c6a3e12ee871eb7 Reviewed-on: https://chromium-review.googlesource.com/765568Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515871}
-
Benjamin Joyce authored
This reverts commit d138e38a. Reason for revert: assessing if cause for https://bugs.chromium.org/p/chromium/issues/detail?id=783010 Original change's description: > Unregister RTCPeerConnectionHandler upon native PC's Close() > > The existing code only unregisters the handler it is destructed. > However, garbage collection might not destroy the object for a while. > > Bug: 780855 > Change-Id: I68d2c1b49cc5042d53464878977400bfd3b75c81 > Reviewed-on: https://chromium-review.googlesource.com/754838 > Commit-Queue: Elad Alon <eladalon@chromium.org> > Reviewed-by: Henrik Boström <hbos@chromium.org> > Cr-Commit-Position: refs/heads/master@{#514466} TBR=hbos@chromium.org,guidou@chromium.org,terelius@chromium.org,eladalon@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 780855 Change-Id: I567bfb7f5aa7f2658b1dbee06a3fe5b66f3dec4b Reviewed-on: https://chromium-review.googlesource.com/765147Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Benjamin Joyce <bjoyce@google.com> Cr-Commit-Position: refs/heads/master@{#515870}
-
Koji Ishii authored
Following bot results are included. 2065 2066 2067 2069 2070 2071 2072 2078 2080 2082 2085 14 lines were removed by consecutive passes since 2057. TBR=eae@chromium.org NOTRY=true Bug: 591099 Change-Id: I7272d2dc468d7bc968d74f49bd5a2df94ef6ea4c Reviewed-on: https://chromium-review.googlesource.com/765547 Commit-Queue: Koji Ishii <kojii@chromium.org> Reviewed-by:
Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#515869}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/c207da8d40cc..24e4cc7087bc $ git log c207da8d4..24e4cc708 --date=short --no-merges --format='%ad %ae %s' 2017-11-12 mtklein disable Android-specific SkTypeface test Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=brianosman@chromium.org Change-Id: I23b62f449604b091a27904ee349167362ec5c477 Reviewed-on: https://chromium-review.googlesource.com/764962Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515868}
-
Philip Rogers authored
These tests had rls-specific expectations that had an inner-editor that is not present in the actual test. These now match non-rls. This is a followup to [1] and should be the last of the inner-editor baselines. [1] https://chromium.googlesource.com/chromium/src/+/ab2050f18161d7df3f0a47efdbb901435c5200f1 Bug: 781419 Change-Id: I54df3c50ca893aeebd581c72c3074c03a9f376e7 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_root_layer_scrolls Reviewed-on: https://chromium-review.googlesource.com/764440 Commit-Queue: Philip Rogers <pdr@chromium.org> Reviewed-by:
Steve Kobes <skobes@chromium.org> Cr-Commit-Position: refs/heads/master@{#515867}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/dee8a432ac99..c207da8d40cc $ git log dee8a432a..c207da8d4 --date=short --no-merges --format='%ad %ae %s' 2017-11-10 mtklein disable native fonts except on NativeFonts bots Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=brianosman@chromium.org Change-Id: I266665f7deccbc3474e9d5d17936d5730ec08e06 Reviewed-on: https://chromium-review.googlesource.com/764958Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515866}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/7ca90d258085..dee8a432ac99 $ git log 7ca90d258..dee8a432a --date=short --no-merges --format='%ad %ae %s' 2017-11-12 update-skps Update SKP version Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=brianosman@chromium.org Change-Id: Id8732648c9be7f3c9daca3dd7bb43f59605b934c Reviewed-on: https://chromium-review.googlesource.com/764957Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515865}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/bb0775da28e3..703671e9fddc $ git log bb0775da2..703671e9f --date=short --no-merges --format='%ad %ae %s' 2017-11-08 oetuaho Unify extension behavior checks Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org 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=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=None (channel is sheriff)@chromium.org Change-Id: I3f1b9869acf790a32efdc0b629e1c1371b9a1b2f Reviewed-on: https://chromium-review.googlesource.com/765197Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515864}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/485903582c25..bb0775da28e3 $ git log 485903582..bb0775da2 --date=short --no-merges --format='%ad %ae %s' 2017-11-10 oetuaho Add flag for turning off initializing variables with loops Created with: roll-dep src/third_party/angle BUG=735497 The AutoRoll server is located here: https://angle-chromium-roll.skia.org 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=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=None (channel is sheriff)@chromium.org Change-Id: Iffdc0bfc7a66f161bfb80d6a4845f9f8834b2978 Reviewed-on: https://chromium-review.googlesource.com/764956Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515863}
-
Vladimir Levin authored
This patch verifies that the SkData we use to deserialize a text blob looks correct (and will not cause an assert in Skia). R=enne@chromium.org Bug: 783808, 783815, 783828 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: Ib07666354827a70dd4a95a589c60ab12b5e61ae7 Reviewed-on: https://chromium-review.googlesource.com/764582 Commit-Queue: enne <enne@chromium.org> Reviewed-by:
enne <enne@chromium.org> Cr-Commit-Position: refs/heads/master@{#515862}
-
Jochen Eisinger authored
This was supposed to be a temporary workaround until issue 714866 is fixed, but never got removed. BUG=774176,783916 R=mkwst@chromium.org,haraken@chromium.org Change-Id: I381d0bca04707d0a361d9ce12c96e189b626c389 Reviewed-on: https://chromium-review.googlesource.com/762436 Commit-Queue: Jochen Eisinger <jochen@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Hayato Ito <hayato@chromium.org> Cr-Commit-Position: refs/heads/master@{#515861}
-
Tsuyoshi Horo authored
We will implement this feature behind the flag. BUG=768705 Change-Id: Ie8a75a3db722fefe14c8ea89a6b23378282f4d00 Reviewed-on: https://chromium-review.googlesource.com/761768Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Commit-Queue: Tsuyoshi Horo <horo@chromium.org> Cr-Commit-Position: refs/heads/master@{#515860}
-
chrome-release-bot authored
TBR=govind@chromium.org Change-Id: Id266c280b0e1e305adc5a7162d0c14791a26644c Reviewed-on: https://chromium-review.googlesource.com/764678Reviewed-by:
chrome-release-bot@chromium.org <chrome-release-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#515859}
-
Vasiliy Tsukanov authored
Bug: 748715 Change-Id: I3aed198d5a6ddb0b776f60c2358701953630078c Reviewed-on: https://chromium-review.googlesource.com/725333 Commit-Queue: Trent Apted <tapted@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Cr-Commit-Position: refs/heads/master@{#515858}
-
- 11 Nov, 2017 7 commits
-
-
Charles Harrison authored
This string was landed as linux-only here: https://codereview.chromium.org/155740 It was changed be !OS_MACOSX when OS_LINUX was changed to OS_POSIX. Bug: 566496 Change-Id: I5615ae7e304c51d7f4f8dd37df36a3c4d2e7cfeb Reviewed-on: https://chromium-review.googlesource.com/764607Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Reviewed-by:
Matt Mueller <mattm@chromium.org> Commit-Queue: Charlie Harrison <csharrison@chromium.org> Cr-Commit-Position: refs/heads/master@{#515857}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/5b4a6ab25592..7ca90d258085 $ git log 5b4a6ab25..7ca90d258 --date=short --no-merges --format='%ad %ae %s' 2017-11-10 brianosman Use round rather than floor for snapping text vertex positions 2017-11-10 angle-deps-roller Roll skia/third_party/externals/angle2/ 225bfa950..3a9090fa0 (1 commit) Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org 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=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=egdaniel@chromium.org Change-Id: I6b034f85043b5d0a46125498f498864425424fa0 Reviewed-on: https://chromium-review.googlesource.com/764816Reviewed-by:
Skia Deps Roller <skia-deps-roller@chromium.org> Commit-Queue: Skia Deps Roller <skia-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515856}
-
Daniele Castagna authored
NV12 has been supported on CrOS x86 mesa for a while. Mapping an NV12 dmabuf has also been supported and test for a while. This CL simply advertises that NV12 images can be used and that NV12 dmabuffs buffers can be mmaped on the renderer side. In this way, software decoded video frames will be converted to NV12. Bug: 683347 Test: youtube on eve with HW video decoder disabled. Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I74e5991ed57acf87d9d0a5ff0c3b6839e8b47b8d Reviewed-on: https://chromium-review.googlesource.com/756217Reviewed-by:
Kenneth Russell <kbr@chromium.org> Reviewed-by:
David Reveman <reveman@chromium.org> Commit-Queue: Daniele Castagna <dcastagna@chromium.org> Cr-Commit-Position: refs/heads/master@{#515855}
-
Khushal authored
Use ScopedImageFlags for all flag overrides. This cleans up the playback code and gives a utility class that we can use during both raster and serialization. R=enne@chromium.org, vmpstr@chromium.org Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: I09f01cf7665acebde786f9e5d9bbbfe85f18d122 Reviewed-on: https://chromium-review.googlesource.com/762391 Commit-Queue: Khushal <khushalsagar@chromium.org> Reviewed-by:
enne <enne@chromium.org> Cr-Commit-Position: refs/heads/master@{#515854}
-
Michael Hablich authored
Due to unresolved Canary crashers V8 is rolled back to the last known stable version. Autoroller is closed, please do not revert this CL. TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org NOTREECHECKS=true Bug: 783708 Change-Id: Icf94ac1d53e250007fdaa5e242c8f44b75e47e85 Reviewed-on: https://chromium-review.googlesource.com/765329 Commit-Queue: Michael Hablich <hablich@chromium.org> Reviewed-by:
Michael Hablich <hablich@chromium.org> Cr-Commit-Position: refs/heads/master@{#515853}
-
Rohit Rao authored
This CL introduces new calls to TopPresentedViewController() that will need to be fixed in the future, but it is better to make this dependency explicit for now. BUG=754642 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: If67343f6424d3bd043825524d32d2a4f693cc1f6 Reviewed-on: https://chromium-review.googlesource.com/764650Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: Rohit Rao (ping after 24h) <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#515852}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/cac94a912493..485903582c25 $ git log cac94a912..485903582 --date=short --no-merges --format='%ad %ae %s' 2017-11-07 jgilbert Remove formatType arg from computeCompressedImageSize. Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org 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=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=None (channel is sheriff)@chromium.org Change-Id: Iaa36001d7b5da2b0241945e4550ccc761479200f Reviewed-on: https://chromium-review.googlesource.com/764814Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#515851}
-