- 04 Aug, 2017 40 commits
-
-
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}
-
Adrienne Walker authored
SkCanvas::saveLayer(Alpha) which is indirectly generated by CompositingDisplayItem takes an optional bounds as a hint for the size of the backing that is used as an indirect offscreen texture for the saveLayer. This acts as an implicit clip, but Skia is free to make this as large as possible or drop the clip. PaintOpBuffer in particular has some optimizations that sometimes drop the bounds when trying to fold together saveLayer/draw/restore into a single draw with alpha. This patch makes it so that any CompositingDisplayItem that provides a clip has its content explicitly clipped. This prevents optimizations inside of PaintOpBuffer that would remove the save/restore generated by the CompositingDisplayItem but prevents any accidental painting outside of display item bounds. Bug: 750252 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: Ic651c35e1ce865f3008dd345952a6fbc97d94740 Reviewed-on: https://chromium-review.googlesource.com/596503 Commit-Queue: enne <enne@chromium.org> Reviewed-by:
Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/master@{#491915}
-
Chris Harrelson authored
Followup to https://chromium-review.googlesource.com/c/581753 Bug: 719737 Change-Id: Ibfe553c23884d04450223b17974214658ec6f763 Reviewed-on: https://chromium-review.googlesource.com/596474 Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@opera.com> Cr-Commit-Position: refs/heads/master@{#491914}
-
Doug Turner authored
Bug: 742592 Change-Id: Id572d0f9961a0c2795ae9abbc73696a05a7b94bf Reviewed-on: https://chromium-review.googlesource.com/599627 Commit-Queue: Doug Turner <dougt@chromium.org> Reviewed-by:
Alice Boxhall <aboxhall@chromium.org> Cr-Commit-Position: refs/heads/master@{#491913}
-
Hans Wennborg authored
https://chromium.googlesource.com/external/github.com/sctplab/usrsctp/+log/2f6478eb8d40..f4819e1b177f Picks up 76bea922c and f4819e1b1 to fix a new Clang warning. $ git log 2f6478eb8..f4819e1b1 --date=short --no-merges --format='%ad %ae %s' 2017-08-03 hans Fix one remaining #pragma pack() 2017-07-28 hans Use '#pragma pack (pop)' instead of '#pragma pack ()' 2017-07-26 tuexen Check return value of if_indextoname(). 2017-07-25 tuexen Remove duplicate statement. 2017-07-24 tuexen Add --enable-programs to configure script. 2017-07-20 tuexen Sync with sctp-idata. 2017-07-19 tuexen Sync with sctp-idata. 2017-07-19 tuexen Sync with sctp-idata. 2017-07-19 tuexen Sync with sctp-idata. 2017-07-18 weinrank update compiler settings for sanitizers 2017-07-18 weinrank adding sanitizer support - first try 2017-07-16 weinrank tsctp: fix compiler warning 2017-07-16 weinrank revert unreachable code changes 2017-07-16 weinrank Revert "Unreachable code when in "__Userspace__"" 2017-07-16 weinrank Compiler flags: don't check for unreachable code 2017-07-16 weinrank tsctp: Windows compile fix 2017-07-16 weinrank Fix compiler warnings for more strict compiler flags 2017-07-16 weinrank Fix shadowed variable complain 2017-07-16 weinrank Unreachable code when in "__Userspace__" 2017-07-16 weinrank CFLAGS: don't set Werror by default 2017-07-16 weinrank More strict compiler flags 2017-07-15 tuexen Sycn with sctp-idata. 2017-07-15 weinrank CMake beautification 2017-07-15 weinrank CMake cleanup 2017-07-14 weinrank CMAKE refactoring 2017-07-13 weinrank correct include_directories path 2017-07-12 weinrank CMAKE refactoring 2017-07-11 weinrank ignore build directory 2017-07-04 tuexen Sync with sctp-idata. 2017-06-25 tuexen Remove unused code on Windows (which would not work). 2017-06-25 tuexen This should dead code. Try on buildbot. 2017-06-25 tuexen More signed/unsigned issues. 2017-06-25 tuexen Address some signed/unsigned issues. 2017-06-25 tuexen Improve build scripts. 2017-06-25 tuexen Silence a warning when using older versions of clang. 2017-06-25 tuexen Silence a warning showing up on clang 4. 2017-06-25 tuexen I missed this in the last commit... 2017-06-25 tuexen Remove datachan_serv.c. 2017-06-25 tuexen Address signess issues. 2017-06-25 tuexen Address windows type mismatches. 2017-06-25 tuexen Fix a bug reported in https://github.com/sctplab/usrsctp/pull/150/files 2017-06-25 tuexen Use lowercase names for include files. 2017-06-23 tuexen Sync with El Capitan sources. 2017-06-23 tuexen Sync with sctp-idata. 2017-06-23 tuexen Sync FBSDID. 2017-06-23 tuexen Fix FreeBSD compilation. 2017-06-23 tuexen Add -Wno-address-of-packed-member to build system. 2017-06-23 tuexen Sync with FreeBSD sources. 2017-05-15 anselm.scholl Fix truncation with snprintf in buffer: Created with: roll-dep src/third_party/usrsctp/usrsctplib BUG=749197 Change-Id: If6d161e71dc1596d82f3c81c82ad896bec0a4732 Reviewed-on: https://chromium-review.googlesource.com/601051 Commit-Queue: Hans Wennborg <hans@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#491912}
-
Michael Giuffrida authored
Allows ExtensionApiTest browser_test tests in Chrome to load test extensions from //extensions/test/data instead of //chrome/test/data/extensions/api_test. This lets us share test extensions between different testing binaries, like browser_tests (in //chrome) and extensions_browsertests (in //extensions). The proof-of-concept moves the "messaging/connect_external" test extension for MessagingApiTest.ConnectExternal and copies a small part of a secondary extension used in that test, so that Chrome test loads: - //extensions/test/data/messaging/connect_external - //extensions/test/data/messaging/receiver Bug: 388893 Change-Id: Ie111fb5a134597a771c58c90ff974109693ade37 Reviewed-on: https://chromium-review.googlesource.com/588251 Commit-Queue: Michael Giuffrida <michaelpg@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#491911}
-
Bence Béky authored
This CL lands server changes 163065386 by clshepherd and 164147233 by bnc. BUG=488484 Change-Id: I2dd1d319e3221cc1ab356a04b6bf60374870fd83 Reviewed-on: https://chromium-review.googlesource.com/600732 Commit-Queue: Bence Béky <bnc@chromium.org> Reviewed-by:
Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#491910}
-
Blake O'Hare authored
Bug: Change-Id: Ia5065ab6e878477732ef3bf8d38043205650090b Reviewed-on: https://chromium-review.googlesource.com/598830Reviewed-by:
Yuichiro Hanada <yhanada@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Commit-Queue: Blake O'Hare <blakeo@chromium.org> Cr-Commit-Position: refs/heads/master@{#491909}
-
Chandan Padhi authored
This CL migrates all the remaining browser to renderer IPC messages. Bug: 742682 Change-Id: I968d9c2f4898dd293fcb6941c746e1d20473f81f Reviewed-on: https://chromium-review.googlesource.com/596107Reviewed-by:
Emircan Uysaler <emircan@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Commit-Queue: Chandan Padhi <c.padhi@samsung.com> Cr-Commit-Position: refs/heads/master@{#491908}
-
Tetsui Ohkubo authored
Previously, user has no way to know what does the taken screenshot looks like before opening the image. With this CL, user can know that because the preview image is shown in the notification. This improvement is included in MD notification mock (internal: go/fuwow), but should also be useful in the existing style notification. BUG=746194 TEST=manual Change-Id: I566b15209b5a7c18b8c706117896c21dde728088 Reviewed-on: https://chromium-review.googlesource.com/580178 Commit-Queue: Tetsui Ohkubo <tetsui@chromium.org> Reviewed-by:
Dan Erat <derat@chromium.org> Reviewed-by:
Naoki Fukino <fukino@chromium.org> Cr-Commit-Position: refs/heads/master@{#491907}
-