- 04 Aug, 2017 40 commits
-
-
Trent Apted authored
Apple doesn't ship a MEDIUM weight font in 10.11 or 10.9. The font system will upgrade it to BOLD (this is covered by tests in platform_font_mac_unittests.mm). BOLD is too bold for buttons in UI, so use a NORMAL weight. Bug: 751414 Change-Id: I5dbac5a165120c919a92476f9fce6747c7e733c1 Reviewed-on: https://chromium-review.googlesource.com/597511 Commit-Queue: Trent Apted <tapted@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#491955}
-
Renee Wright authored
First change for Ribbonizing CSSPropertyMetadata. Splits up the existing CSSPropertyAPI groups based on different behavior for CSSPropertyMetadata methods IsInterpolableProperty, IsInheritedProperty, PropertySupportsPercentage, PropertyIsRepeated & RepititionSeparator. IsDescriptor, IsEnabledProperty and FilterEnabledCSSPropertiesIntoVector will be handled later. CSSPropertyAPIs have been split as follows - CSSPropertyAPIColor - CSSPropertyAPIColor - CSSPropertyAPIBackgroundColor - CSSPropertyAPIColorNoQuirks - CSSPropertyAPIColorNoQuirksInherited - CSSPropertyAPIColorNoQuirksNonInherited - CSSPropertyAPIWekbitTextStrokeColor - CSSPropertyAPIWebkitBorderColor - CSSPropertyAPIFragmentation - CSSPropertyAPIOrphansOrWidows - CSSPropertyAPIWebkitBoxOrdinalGroup - CSSPropertyAPIImage - CSSPropertyAPIImageSource - CSSPropertyAPIListStyleImage - CSSPropertyAPIMargin - CSSPropertyAPIMargin - CSSPropertyAPIOffset - CSSPropertyAPIMarker - CSSPropertyAPIMarker - CSSPropertyAPIMask - CSSPropertyAPIOpacity - CSSPropertyAPIOpacityInherited - CSSPropertyAPIOpacityNonInherited - CSSPropertyAPIStrokeOrLength - CSSPropertyAPIStrokeDashoffsetOrStrokeWidth - CSSPropertyAPILength - CSSPropertyAPITextDecorationLine - CSSPropertyAPITextDecorationLine - CSSPropertyAPIWebkitTextDecorationsInEffect - CSSPropertyAPIWidthOrHeight - CSSPropertyAPIWidthOrHeight - CSSPropertyAPIMinWidthOrHeight BUG=751373 Change-Id: I299b8b9051adae3dac74a2eb905916fbb906b7dc Reviewed-on: https://chromium-review.googlesource.com/597369 Commit-Queue: Renée Wright <rjwright@chromium.org> Reviewed-by:
Bugs Nash <bugsnash@chromium.org> Reviewed-by:
meade_UTC10 <meade@chromium.org> Cr-Commit-Position: refs/heads/master@{#491954}
-
Nicholas Verne authored
Delete the last web/ cpp file. Bug: 712963 Change-Id: I2a8f5d514285121fa5b3512718baddc9ccaf2e24 Reviewed-on: https://chromium-review.googlesource.com/601609 Commit-Queue: Nicholas Verne <nverne@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#491953}
-
Yusuke Sato authored
This CL depends on crrev.com/488879. See CL:601768 for more details. BUG=b:64327302 TEST=try Change-Id: I7158787dcb852d84ed78032ea51c97e3dce8cea0 Reviewed-on: https://chromium-review.googlesource.com/601772Reviewed-by:
Hidehiko Abe <hidehiko@chromium.org> Commit-Queue: Yusuke Sato <yusukes@chromium.org> Cr-Commit-Position: refs/heads/master@{#491952}
-
Daichi Hirono authored
The CL lets Surface observe drag and drop events and delegates the events to DataDevice thorugh DataDeviceManager. Bug: b:31988797 Test: None Change-Id: I9574cd86137922d7527bd297d182a7b45e632c9e Reviewed-on: https://chromium-review.googlesource.com/579250 Commit-Queue: Daichi Hirono <hirono@chromium.org> Reviewed-by:
David Reveman <reveman@chromium.org> Cr-Commit-Position: refs/heads/master@{#491951}
-
Darren Shen authored
Currently, when a CSSTokenizer is created from a String, the string is completely tokenized in the constructor. In order to make the css parser tokenize on demand, we do not tokenize everything in the constructor. Instead, we introduce a new class called CSSParserTokenStream that acts a streaming interface to the tokenizer. Eventually, this will have methods such as "Next" and "Peek" that tokenize on demand. For now, it just has a method to fully tokenize the input and returns the range. Hence, this patch simply moves full string tokenization from CSSTokenizer constructor to CSSParserTokenStream::MakeRangeToEOF(). The plan is to eventually replace (most) CSSParserTokenRanges with CSSParserTokenStreams. This patch replaces some of the top level parsing functions to use a CSSParserTokenStream. To call lower level parsing functions that use ranges, we convert these streams to ranges, which triggers a full tokenization. This is a temporary fallback to the current range system. Future patches will change those level parsing functions to use streams as well, layer by layer, so we won't need to trigger full tokenizations. Note that only one of the two constructors are affected by this patch. The other constructor uses observers and is more difficult to change. This patch does not change observable behaviour, and should not have any performance impacts (since we're just delaying when the string gets fully tokenized). Bug: 661854 Change-Id: I6f20269835d806106e95740f8dcee6744d0de944 Reviewed-on: https://chromium-review.googlesource.com/595025Reviewed-by:
nainar <nainar@chromium.org> Reviewed-by:
meade_UTC10 <meade@chromium.org> Commit-Queue: Darren Shen <shend@chromium.org> Cr-Commit-Position: refs/heads/master@{#491950}
-
Mark Cogan authored
This CL fixes a couple of common crashes in CSChromium. - Entering a URL on the NTP caused a crash because the webState wasn't enabled when it was navigating. This is fixed by setting webUsageEnabled during -loadGURLFromLocationBar:transition: - Tapping some buttons in the toolbar would cause a crash in the tab container VC's -canPerformAction:withSender:, which was creating an array with objects that might be nil. This method was only needed to plumb responder chain events into contained view controllers, which has long since been replaced by dispatchers. Also, per the ObjC style guide, the exception raised in -subviewConstraints is replaced with a NOTREACHED(). Bug: Change-Id: Ic22bc6decfde97530434c95f318b72cf637aaf24 Reviewed-on: https://chromium-review.googlesource.com/594947Reviewed-by:
Ed Chin <edchin@chromium.org> Commit-Queue: Mark Cogan <marq@chromium.org> Cr-Commit-Position: refs/heads/master@{#491949}
-
Kinuko Yasuda authored
Bug: 740070 Change-Id: I1b0983d8f4e0c49466edf176bc4a1c7f73105539 Reviewed-on: https://chromium-review.googlesource.com/599252 Commit-Queue: Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#491948}
-
Daichi Hirono authored
DragDropObserver will be used by DataDevice instances to observe drag drop events. Bug: b:31988797 Test: None Change-Id: I67d15f81a59730f0d78da3d56f120a16d84a43b3 Reviewed-on: https://chromium-review.googlesource.com/578748 Commit-Queue: Daichi Hirono <hirono@chromium.org> Reviewed-by:
David Reveman <reveman@chromium.org> Reviewed-by:
Hidehiko Abe <hidehiko@chromium.org> Cr-Commit-Position: refs/heads/master@{#491947}
-
Walter Korman authored
Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: I100467a0c95efe3c686ae5e79e1e6e8da32b39ec Reviewed-on: https://chromium-review.googlesource.com/600823Reviewed-by:
Vladimir Levin <vmpstr@chromium.org> Commit-Queue: Walter Korman <wkorman@chromium.org> Cr-Commit-Position: refs/heads/master@{#491946}
-
Peter Kasting authored
XXXTaskRunner xxx_thread_ -> xxx_task_runner_ RunOnXXXThread() -> RunOnXXXSequence() Follows https://chromium-review.googlesource.com/c/566181/ . Bug: None Change-Id: I87531313b20b3a8ec155f6dde4d066de3b3d802b Reviewed-on: https://chromium-review.googlesource.com/586387 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Selim Gurun <sgurun@chromium.org> Reviewed-by:
Nicolas Zea <zea@chromium.org> Reviewed-by:
Ganggui Tang <gogerald@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Robert Liao <robliao@chromium.org> Reviewed-by:
Vaclav Brozek <vabr@chromium.org> Cr-Commit-Position: refs/heads/master@{#491945}
-
Jia authored
This cl also refactors util functions and moves them from CSSPropertyParser to CSSPropertyGridUtils and moves functions from CSSPropertyGridTemplateAreasUtils to CSSPropertyGridUtils as the functions are used by multiple grid-related properties, and we won't have to call one util file from another util file. The old version of several util functions parse property values and also add parsed values to the parsed-property-set, which means these util functions need to take shorthand property id as an input. A major change in this cl is splitting parsing and adding values. Adding property values will be handled by property API classes. The benefits of this refactoring are (i). util functions no longer need to take shorthand id as input, and thus become pure util functions. (ii). it is now more obvious which property values are added. Previously property values are added at different places, but now they are only added in the property API files. Functions below have major changes mentioned above. 1. ConsumeGridTemplateRowsAndAreasAndColumns - The old version parses and adds property values. - The new version only parses values and returns values to the caller. 2. ConsumeGridTemplateShorthand - The old version parses and adds property values (by calling ConsumeGridTemplateRowsAndAreasAndColumns for some cases). - The new version only parses values and returns values to the caller. It is shared by both grid and grid-template APIs. 3. ConsumGridShorthand - The old version is replaced by grid's parseShorthand method. - The old version parses property values both directly and indirectly (by calling ConsumeGridTemplateShorthand), and adds property values at different places. - The new version calls util functions for parsing only, and explicitly adds property values itself. Bug: 668012 Change-Id: I4808bd1f169bcad5b3d46a83fc897567f18a0e7e Reviewed-on: https://chromium-review.googlesource.com/595293 Commit-Queue: Jia Meng <jiameng@chromium.org> Reviewed-by:
Darren Shen <shend@chromium.org> Cr-Commit-Position: refs/heads/master@{#491944}
-
Ken Rockot authored
BUG=740044 TBR=jcivelli@chromium.org Change-Id: Idaabb8ac8b1880987ab670bdde7216f06be88dee Reviewed-on: https://chromium-review.googlesource.com/601419Reviewed-by:
Ken Rockot <rockot@chromium.org> Commit-Queue: Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#491943}
-
Han Leon authored
This CL is part of servicification work for //device/serial, it: - creates a new mojo interface SerialDeviceEnumerator and exposes it from Device Service, the interface implementation wraps a device::SerialDeviceEnumerator to do actual work. - lets serial extension API impls consume the above interface instead of directly calling functions of device::SerialDeviceEnumerator. BUG=749514 TEST=browser_tests SerialApiTest.* Change-Id: Ib768bb25032fcc4a0899780a2f85467f128a6800 Reviewed-on: https://chromium-review.googlesource.com/586632Reviewed-by:
Reilly Grant <reillyg@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Commit-Queue: Han Leon <leon.han@intel.com> Cr-Commit-Position: refs/heads/master@{#491942}
-
Kent Tamura authored
TBR=kochi@chromium.org Bug: 685886 Change-Id: I7c1723a999e06f6a99feb3e3ddfd3bab18ea19a6 Reviewed-on: https://chromium-review.googlesource.com/601667Reviewed-by:
Kent Tamura <tkent@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#491941}
-
Walter Korman authored
The number of references in cc and blink that reach directly into the ElementId struct and reference id_ continues to grow. It seems now worth making these explicit and potentially more easily maintainable in future by adding a ToInternalValue method, documenting, and changing most references (except the hash impl, which seems worth just making a friend) to use the method instead. Also use PRIu64 to print the raw type per: https://stackoverflow.com/questions/9225567/how-to-print-a-int64-t-type-in-c rather than static_cast antics. Bug: 709137 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: Ieafcd258b214363095c74fc5facd133878337b28 Reviewed-on: https://chromium-review.googlesource.com/601000Reviewed-by:
Vladimir Levin <vmpstr@chromium.org> Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Commit-Queue: Walter Korman <wkorman@chromium.org> Cr-Commit-Position: refs/heads/master@{#491940}
-
Eric Lawrence authored
Renames the mojo interface to reflect its soon-to-be-broader scope. Followup CLs will add and act upon a FieldEditedInInsecureContext method to change the SecurityLevel of the page when a user edits an input field on a non-secure page. BUG: 720094 Change-Id: Id4299c6cf53ac36a64f2018bcc0dd45a05d4f81a TBR: jam@chromium.org Reviewed-on: https://chromium-review.googlesource.com/599068 Commit-Queue: Eric Lawrence <elawrence@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Emily Stark <estark@chromium.org> Cr-Commit-Position: refs/heads/master@{#491939}
-
Nathan Bruer authored
In prep for network canvas rework. This patch moved the drawing of canvas timing bars into two functions, one that draws the timelines and another that draws the timing headers. Both functions now take in the divider data which is used to place the dividers. R=alph BUG=None Change-Id: I28657ec3cfad498ccf29f5ee3ce2c30196fb76ef Reviewed-on: https://chromium-review.googlesource.com/592768 Commit-Queue: Blaise Bruer <allada@chromium.org> Reviewed-by:
Alexei Filippov <alph@chromium.org> Cr-Commit-Position: refs/heads/master@{#491938}
-
Vladimir Levin authored
This patch removes a logging thing that was added accidentally. R=brettw@chromium.org Change-Id: Ic2dd06ad180396b455948f04b336cf681033377e Reviewed-on: https://chromium-review.googlesource.com/601410 Commit-Queue: Brett Wilson <brettw@chromium.org> Reviewed-by:
Brett Wilson <brettw@chromium.org> Cr-Commit-Position: refs/heads/master@{#491937}
-
Peiyong Lin authored
This patch: 1. implements MetricsCollector to report background heuristics metrics; 2. adds UMA histogram to report audibility for background tabs; 3. creates empty ResourceCoordinatorInterface when service connection is not available or resource coordinator service is not enabled. BUG=731270 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_site_isolation Change-Id: I53621e5a09a0c02e0526acfc405c751b62b4188d Reviewed-on: https://chromium-review.googlesource.com/575512 Commit-Queue: lpy <lpy@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Nasko Oskov <nasko@chromium.org> Reviewed-by:
Oystein Eftevaag <oysteine@chromium.org> Reviewed-by:
Zhen Wang <zhenw@chromium.org> Cr-Commit-Position: refs/heads/master@{#491936}
-
iOS Autoroller authored
TBR=smut Change-Id: I8b87300dcf6cfa3c0e94daef7a482a8d7db9f516 Reviewed-on: https://chromium-review.googlesource.com/601550Reviewed-by:
iOS Autoroller <ios-autoroller@chromium.org> Commit-Queue: iOS Autoroller <ios-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#491935}
-
Michael Giuffrida authored
ShellTestBaseAura augments extensions::ExtensionsTest and also sets up the Aura environment. app_shell_unittests test classes can derive from ShellTestBaseAura to get this set-up for free, instead of deriving from either ExtensionsTest (which doesn't create a ShellExtensionsBrowserClient) or AuraTestBase (which sets up its own Screen and RootWindow). In particular, deriving ShellDesktopControllerAuraTest from AuraTestBase doesn't make sense because the ShellDesktopControllerAura creates its own screen and RootWindow. This also provides ShellTestHelperAura, which can be used as a class member to get shell environment set-up without deriving a test from ExtensionsTest. Change-Id: I4565c985c77444ebc7325fd7d5295d028f85f774 Reviewed-on: https://chromium-review.googlesource.com/591641 Commit-Queue: Michael Giuffrida <michaelpg@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Ben Wells <benwells@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#491934}
-
Kent Tamura authored
We normalized |size| content attribute value to a number in order to write the UA stylesheet easier. We introduced :-internal-list-box a few years ago, and this normalization isn't necessary now. This CL does: - Do not normalize |size| attribute value in HTMLSelectElement:: ParseAttribute(). - Use the standard reflection code for |size| IDL attribute. Bug: 745316 Change-Id: Ifcd3b2b55762f49b72c49900ab89a4fe78fb9b78 Reviewed-on: https://chromium-review.googlesource.com/598763 Commit-Queue: Kent Tamura <tkent@chromium.org> Reviewed-by:
Keishi Hattori <keishi@chromium.org> Cr-Commit-Position: refs/heads/master@{#491933}
-
Nathan Bruer authored
Code health to template ListWidget so the deligates know what data types come in and out. Also did a little cleanup with @unrestricted removals. R=caseq,dgozman BUG=None Change-Id: Ia60ae43dab9e449234cbadd0839008b3e6a8e277 Reviewed-on: https://chromium-review.googlesource.com/599027 Commit-Queue: Blaise Bruer <allada@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#491932}
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/6c740e29640c..f24fc1e69d77 $ git log 6c740e296..f24fc1e69 --date=short --no-merges --format='%ad %ae %s' 2017-08-03 hnakashima Add script to compare performance of two versions of pdfium. 2017-08-03 janeliulwq Added testing flag --save-images that saves embedded images 2017-08-03 janeliulwq APIs and tests for retrieving raw/decoded data from image objects 2017-08-03 npm LibTIFF: fix defines in tiffconf 2017-08-02 janeliulwq APIs and tests for extracting bitmaps from image objects 2017-08-03 tsepez kill some stray __native_client__ defines Created with: roll-dep src/third_party/pdfium Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls TBR=dsinclair@chromium.org Change-Id: Ic5a7ceded4cffa44d2a74c157da048d4cfebc575 Reviewed-on: https://chromium-review.googlesource.com/601446 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#491931}
-
Stuart Langley authored
IndexedDBClientImpl is no longer required now that the web/ layer has been removed and it's contents moved to modules/ and core/. Bug: 731490 Change-Id: Ia5720f6326e742b606002ddddcafb5cd5a24e460 Reviewed-on: https://chromium-review.googlesource.com/597570Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Stuart Langley <slangley@chromium.org> Cr-Commit-Position: refs/heads/master@{#491930}
-
sangwoo.ko authored
Bug:46448 Change-Id: I9f1ea66e4cc9732741378e067d2b420a1136b885 Reviewed-on: https://chromium-review.googlesource.com/575805 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#491929}
-
iOS Autoroller authored
TBR=smut Change-Id: I69f48debbeb68c1c410983301301235e38b4d29e Reviewed-on: https://chromium-review.googlesource.com/601356Reviewed-by:
iOS Autoroller <ios-autoroller@chromium.org> Commit-Queue: iOS Autoroller <ios-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#491928}
-
iOS Autoroller authored
TBR=smut Change-Id: I8fd3b5ccaaf6f63e3f1c409b420cdf72e7ac5ffe Reviewed-on: https://chromium-review.googlesource.com/601548Reviewed-by:
iOS Autoroller <ios-autoroller@chromium.org> Commit-Queue: iOS Autoroller <ios-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#491927}
-
Tatsuhisa Yamaguchi authored
We have been using hidden=true attribute to hide some menu items. We started to use display=none CSS attiribute for the same purpose, so that it can change visibility of items by changing an attribute of the parent node. https://chromium-review.googlesource.com/c/566768/15/ui/file_manager/file_manager/foreground/css/file_manager.css The logic for keyboard focus should also skip items hidden by that way. Bug: 748504 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Ia4c6cffcc9ac5e64c64da7644622ebf2949727e0 Reviewed-on: https://chromium-review.googlesource.com/597386Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Commit-Queue: Tatsuhisa Yamaguchi <yamaguchi@chromium.org> Cr-Commit-Position: refs/heads/master@{#491926}
-
catapult-deps-roller@chromium.org authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/a62e07f86606..357e1deefca7 $ git log a62e07f86..357e1deef --date=short --no-merges --format='%ad %ae %s' 2017-08-03 xunjieli [wpr-go] Use a dummy cert if no cert is recorded 2017-08-03 ashleymarie Correct seconds_since_epoch to actually be seconds instead of milliseconds Created with: roll-dep src/third_party/catapult BUG=751818 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=sullivan@chromium.org Change-Id: Ie29b6143749e1b0603b86ac9fbe43f86085b25c7 Reviewed-on: https://chromium-review.googlesource.com/601537 Reviewed-by: <catapult-deps-roller@chromium.org> Commit-Queue: <catapult-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#491925}
-
Matt Giuca authored
Mojo bindings were incorrectly registered since r480972, resulting in calls to Navigator.getInstalledRelatedApps never resolving or rejecting. This correctly registers with a RenderFrameHost, not WebContents. Adds an end-to-end test for getInstalledRelatedApps on Android, which would've caught this breakage. (The feature is already covered by Blink Layout Tests and Android Java unit tests, but there was nothing that ensures the whole system is working.) Bug: 750348 Change-Id: Ife895f26c42c6344906ea842ffb48f73d881b236 Reviewed-on: https://chromium-review.googlesource.com/597608 Commit-Queue: Matt Giuca <mgiuca@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#491924}
-
Annie Sullivan authored
Change-Id: I83c61b1f4f7fe33a47568779041d4a70fcefd401 Reviewed-on: https://chromium-review.googlesource.com/600833Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Annie Sullivan <sullivan@chromium.org> Cr-Commit-Position: refs/heads/master@{#491923}
-
chrome-release-bot authored
TBR=dimu@chromium.org Change-Id: I4b850799592c5e4b7958f072a22a111db3d8db79 Reviewed-on: https://chromium-review.googlesource.com/601489Reviewed-by:
chrome-release-bot@chromium.org <chrome-release-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#491922}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/49fd5d5b7407..bad5ad7d601b $ git log 49fd5d5b7..bad5ad7d6 --date=short --no-merges --format='%ad %ae %s' 2017-08-03 caryclark canvas include checkpoint 2017-08-03 skia-deps-roller Roll skia/third_party/externals/angle2/ d2d0b30e1..13c0dd463 (2 commits) 2017-08-03 skia-deps-roller Roll skia/third_party/externals/angle2/ a0bcc50be..d2d0b30e1 (1 commit) Created with: roll-dep src/third_party/skia Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls 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;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=liyuqian@chromium.org Change-Id: I9dd10b388d17d1081f73cd05b0bbba28f88bf520 Reviewed-on: https://chromium-review.googlesource.com/600775Reviewed-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@{#491921}
-
Mike Dougherty authored
In order to accomidate the new strings, more resource id space needs to be allocated for components/components_strings.grd. Bug: 750228 Change-Id: I9e5bf7d69ef9ac56c976576cc30230060a4e4b79 Reviewed-on: https://chromium-review.googlesource.com/590847 Commit-Queue: Mike Dougherty <michaeldo@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Emily Stark <estark@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Cr-Commit-Position: refs/heads/master@{#491920}
-
Chris Watkins authored
This CL implements Reset() which enables seeking to work as expected. CodecWrapper also now takes a closure that it will call whenever an output buffer is released back to the codec to signal that the codec might now accept more input. Bug: 660942 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: I2b91cffafc6ca4940a7bdc819491359f47b592f0 Reviewed-on: https://chromium-review.googlesource.com/597383 Commit-Queue: Chris Watkins <watk@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Cr-Commit-Position: refs/heads/master@{#491919}
-
Bret Sepulveda authored
This patch changes the tests to just wait for tasks to finish before running their validation instead of relying on the timing of particular threads. Also fixed a property leak on shutdown that was probably causing their flakiness, so they are re-enabled. Bug: 396344, 689520 Change-Id: I9f04d515279ec10f6353e0e6c096ca76bda8ed1c Reviewed-on: https://chromium-review.googlesource.com/575758Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Greg Thompson <grt@chromium.org> Reviewed-by:
Peter Kasting <pkasting@chromium.org> Commit-Queue: Bret Sepulveda <bsep@chromium.org> Cr-Commit-Position: refs/heads/master@{#491918}
-
Alexei Filippov authored
NOTRY=true Change-Id: Id20b6f20182f40659bb7b7e3040dd91e4f700353 Reviewed-on: https://chromium-review.googlesource.com/600928Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#491917}
-
Mike Klein authored
... and rebaseline Change-Id: I8023f1a57efb3536b38a912f9b6b9d8917fe3dc2 Reviewed-on: https://chromium-review.googlesource.com/600734 Commit-Queue: Mike Klein <mtklein@chromium.org> Reviewed-by:
Florin Malita <fmalita@chromium.org> Cr-Commit-Position: refs/heads/master@{#491916}
-