- 27 Jan, 2018 40 commits
-
-
Katie Dektar authored
This will be launched in Chrome 65 (see launch bug). Bug: 785018 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Ifd26e1bbede7e21c547df51a5edc7397167a74b5 Reviewed-on: https://chromium-review.googlesource.com/813076Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Katie Dektar <katie@chromium.org> Cr-Commit-Position: refs/heads/master@{#532219}
-
Nico Weber authored
This CL was uploaded by git cl split. R=dtapuska@chromium.org Bug: 177475 Change-Id: I78e1026f86a8defe0fb7fb3683dd288f7b376dcd Reviewed-on: https://chromium-review.googlesource.com/889734Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#532218}
-
Raphael Kubo da Costa authored
Architecturally, there is nothing really preventing garbage-collected types from being used with Optional<T> other than avoiding misuse. Relax the existing checks by removing the ones in place in Optional.h itself, but keep OptionalGarbageCollected in //tools/clang/blink_gc_plugin. In practice, this is a relaxation of the rules that: * Allows Optional<HeapVector<T>> (and other Oilpan containers). These containers do not inherit from GarbageCollected or GarbageCollectedMixin, but do have the IS_GARBAGE_COLLECTED_TYPE() macro in their declarations. As we are moving to replace the binding layer's Nullable<T> with wtf's Optional<T>, doing so makes things uniform by letting Optional<> be used with both Vector and HeapVector types so that Web IDL's sequence<long>? and sequence<Document>? are both translated into C++ as Optional<T>. * Types that do inherit from GarbageCollected or GarbageCollectedMixin are still disallowed by the checks in blink_gc_plugin since none of the changes to get rid of Nullable<T> require them to be turned off or relaxed. Web IDL's Document? is still represented as Document* in C++. TraceTrait<T> had to be augmented with a specialization for Optional<T>, as we may need to Trace() its inner type if it's a GC container type. Bug: 798464 Change-Id: I12cad41976219654985f5a8d560e7db3f4cedf82 Reviewed-on: https://chromium-review.googlesource.com/888918Reviewed-by:
Yuki Shiino <yukishiino@chromium.org> Reviewed-by:
Keishi Hattori <keishi@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> Cr-Commit-Position: refs/heads/master@{#532217}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/143d9c6f..10264240 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. 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=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: Ic68f0c33cddf21e7048467e39ecf0a840542d912 Reviewed-on: https://chromium-review.googlesource.com/890359Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#532216}
-
Dave Tapuska authored
It appears ipc_channel_mojo only calls ChannelError when the remote side is closed. If we are in a blocking object wait on the UI thread in the browser the ChannelClosing message won't be posted until the UI thread is unblocked. The ChannelClosing message is sent when the host side of the channel is actually closed; not when the remote site closes the channel. SynchronousCompositorBrowserFilter appears to be the only object that waits on an object like this. BUG=722928 Change-Id: Ie1fd2a4cf651317fdc197d3e260b2b7bd759d9cd Reviewed-on: https://chromium-review.googlesource.com/887289 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Cr-Commit-Position: refs/heads/master@{#532215}
-
Philip Jägenstedt authored
No-Try: true Change-Id: Ic182c3267a4f3e53c7103e897d1720a8e47d47bc Reviewed-on: https://chromium-review.googlesource.com/876323 Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Reviewed-by:
Darren Shen <shend@chromium.org> Reviewed-by:
Robert Ma <robertma@chromium.org> Cr-Commit-Position: refs/heads/master@{#532214}
-
Yuta Kitamura authored
Change-Id: Ia9717ec912600b2cbf6c69f349cb253ebbf37033 Reviewed-on: https://chromium-review.googlesource.com/888280Reviewed-by:
Alexander Timin <altimin@chromium.org> Commit-Queue: Yuta Kitamura <yutak@chromium.org> Cr-Commit-Position: refs/heads/master@{#532213}
-
codeimpl authored
base/memroy/ptr_util.h includes are changed with <memory> as well. Bug: 755727 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: I5076f4b596ee4051e4b02a2c8c23ab73448ec983 Reviewed-on: https://chromium-review.googlesource.com/882527 Commit-Queue: Jinho Bang <jinho.bang@samsung.com> Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Cr-Commit-Position: refs/heads/master@{#532212}
-
Marina Ciocea authored
* Add AudioDebugRecordingSession factory * Enable debug recording in AudioDebugRecordingSessionImpl constructor * Disable debug recording in AudioDebugRecordingSessionImpl destructor Bug: 88657 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: I44383d0994b8eebfd36c368827973e614937d8cd Reviewed-on: https://chromium-review.googlesource.com/883528Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Olga Sharonova <olka@chromium.org> Commit-Queue: Marina Ciocea <marinaciocea@chromium.org> Cr-Commit-Position: refs/heads/master@{#532211}
-
Alex Clarke authored
We now support tasks choosing to extend virtual time. Bug: 777763 Change-Id: I34d0f07ecee78fafe75a6e4d2280c6512c6f7e2f Reviewed-on: https://chromium-review.googlesource.com/889298 Commit-Queue: Alex Clarke <alexclarke@chromium.org> Reviewed-by:
Eric Seckler <eseckler@chromium.org> Cr-Commit-Position: refs/heads/master@{#532210}
-
Ned Nguyen authored
This reverts commit 07bce4a6. Reason for revert: scottmg@'s may fix this in https://chromium-review.googlesource.com/889701 Original change's description: > sheriff: disable TabStackTraceTest.testValidDump > > TBR=brucedawson@chromium.org > > Bug: 804452 > Change-Id: I49e348b382ea3df249788b0d26c77b7b9f6afd45 > Reviewed-on: https://chromium-review.googlesource.com/881241 > Reviewed-by: Elly Fong-Jones <ellyjones@chromium.org> > Reviewed-by: Ned Nguyen <nednguyen@google.com> > Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org> > Cr-Commit-Position: refs/heads/master@{#531300} TBR=ellyjones@chromium.org,nednguyen@google.com,brucedawson@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 804452 Change-Id: Ie24f2780f0430232e62eccc54d610ccda8c9e8e2 Reviewed-on: https://chromium-review.googlesource.com/890023Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Ned Nguyen <nednguyen@google.com> Cr-Commit-Position: refs/heads/master@{#532209}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/eeaa89d1f406..fc20008819f3 $ git log eeaa89d1f..fc2000881 --date=short --no-merges --format='%ad %ae %s' 2018-01-27 update-docs Update markdown files 2018-01-26 reed hide picture virtuals (no public callers) 2018-01-26 mtklein Revert "remove third_party/etc1" 2018-01-26 scroggo Make SkAndroidCodec (optionally) respect origin 2018-01-26 halcanary SkQP: more slack 2018-01-26 fmalita Revert "Simplify call when finished with bitmaps." 2018-01-26 mtklein make SkGammas less bad 2018-01-25 halcanary SkQP: re-enable workarounds for unit tests. Also, more logging 2018-01-26 fmalita [skottie] Add 'rz' rotation support 2017-12-21 mtklein remove obsolete DM test configs 2018-01-26 reed move checkLE functionality directly onto readbuffer 2018-01-25 mtklein remove third_party/etc1 2018-01-26 scroggo Add SkAnimatedImage::getRepetitionCount 2018-01-26 mtklein remove SkColorSpace_Base 2018-01-24 mtklein eliminate SK_BUILD_FOR_WIN32 2018-01-17 herb Remove legacy mask blur code. 2018-01-26 bsalomon Remove unused SkPictureContentInfo 2018-01-09 herb Fix typeface duplication problem. 2018-01-26 caryclark working on global enum and image info 2018-01-26 bsalomon Remove GrContext::getRecommendedSampleCount and SkPictureContentInfo::suitableForGpuRasterization 2018-01-26 reed use coverage modes instead of blend modes 2018-01-26 mtklein roll skcms 2018-01-25 mtklein bug fixes from PVS Studio (static analysis) 2018-01-25 bungeman Fix SkShaper_harfbuzz bidi and non-bmp. 2018-01-24 benjaminwagner Rename .include files to .inc 2018-01-25 jvanverth Use int when possible to calculate atlas indices in shaders. 2018-01-25 fmalita [skottie] Refactor animators 2018-01-25 mtklein add basic skia -> skcms dependency 2018-01-09 herb Add cache for handling of contexts. 2018-01-25 bungeman SkShaper to account for line wrap. 2018-01-25 angle-skia-autoroll Roll skia/third_party/externals/angle2/ 1436d434b..ffa4cbb6f (1 commit) 2018-01-25 fmalita [skottie] Parser cleanup 2018-01-25 mtklein remove third_party/libwebp/webp/config.h 2017-11-16 bungeman Improve SkShaper. 2018-01-25 angle-skia-autoroll Roll skia/third_party/externals/angle2/ aba14ff52..1436d434b (2 commits) 2018-01-25 angle-skia-autoroll Roll skia/third_party/externals/angle2/ 2d8e432a9..aba14ff52 (1 commit) 2018-01-25 halcanary SkQP: run_skqp_exe script 2018-01-24 benjaminwagner Couple small changes to speed up Goma compiles 2018-01-25 halcanary SkQP: Fix errors in README.md 2018-01-24 bsalomon Add predefined gles4444 config 2018-01-24 bsalomon Remove predefined instanced configs 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=robertphillips@chromium.org Change-Id: I04b5b79090f40f6838f58b61bead35fd3837dcc0 Reviewed-on: https://chromium-review.googlesource.com/890320Reviewed-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@{#532208}
-
depot-tools-roller@chromium.org authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/fd4ad2416554..23c165f3c831 $ git log fd4ad2416..23c165f3c --date=short --no-merges --format='%ad %ae %s' 2018-01-26 drinkcat my_activity: Print status and delta in reviews as well 2018-01-26 jbudorick Fix pylint error in gclient_scm_test. 2018-01-19 agable git-cl-patch: fail if patching from a different repo 2018-01-25 nodir [git-cl-try] accept buckets from builders-map app Created with: roll-dep src/third_party/depot_tools The AutoRoll server is located here: https://depot-tools-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. TBR=phajdan.jr@chromium.org Change-Id: Icfaf6fb061925c46ad81de6d5f112bca1bf0abb9 Reviewed-on: https://chromium-review.googlesource.com/890319 Commit-Queue: depot-tools-roller . <depot-tools-roller@chromium.org> Reviewed-by:
depot-tools-roller . <depot-tools-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#532207}
-
Daniele Castagna authored
This CL aligns the list of native gpu memory buffer formats supported for the usages SCANOUT and SCANOUT_CPU_READ_WRITE, since all the formats currently allowed for scanout can be memory mapped. Bug: b/71837407 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: Ie5864fd4db2133d0146ae9d0b9f1fa5896d9b802 Reviewed-on: https://chromium-review.googlesource.com/889863 Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
David Reveman <reveman@chromium.org> Cr-Commit-Position: refs/heads/master@{#532206}
-
wutao authored
Introduce the main view for Keyboard Shortcut Viewer (KSV). Changes: 1. //ui/chromeos/ksv/views/*: the main view and test. 2. Populate the KeyboardShortcutItem's |shortcut_key_codes|. Bug: 768932 Test: KeyboardShortcutViewTest and open the view and load metadata. Change-Id: Ibc90872fc38600c1d81a63a49ab223f902a49afa Reviewed-on: https://chromium-review.googlesource.com/880161 Commit-Queue: Tao Wu <wutao@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#532205}
-
Alexei Filippov authored
The patch adds --sampling-heap-profiler command-line switch that enables profiler at the renderer process startup. If the rate is not provided it uses the default sampling interval of 128 KiB. BUG=803276 Change-Id: I6da0e5fc5083a20b8eec7dc987df6105db24b6d7 Reviewed-on: https://chromium-review.googlesource.com/882604 Commit-Queue: Alexei Filippov <alph@chromium.org> Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Cr-Commit-Position: refs/heads/master@{#532204}
-
Lei Zhang authored
Otherwise, it is too easy to accidentally change the enum value and make it go out of sync. In fact, that is the current state. Update enums.xml so the values line up again. Also add a comment to remind readers to keep the enum values constant, and mark a chrome::ResultCode enum as unused. BUG=805754 Change-Id: I66efe023d5b8f5caa9f279641aea0f52a667ab0f Reviewed-on: https://chromium-review.googlesource.com/885090Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#532203}
-
Yixin Wang authored
Change-Id: If94561f453bbc56b86238918d374baf8c2254646 Reviewed-on: https://chromium-review.googlesource.com/887970Reviewed-by:
Ryan Hamilton <rch@chromium.org> Commit-Queue: Yixin Wang <wangyix@chromium.org> Cr-Commit-Position: refs/heads/master@{#532202}
-
catapult-deps-roller@chromium.org authored
https://chromium.googlesource.com/catapult.git/+log/8d63750dfb6f..82f653f9a44e $ git log 8d63750df..82f653f9a --date=short --no-merges --format='%ad %ae %s' 2018-01-26 dtu [pinpoint] Add --webview-embedder-apk flag for webview bots. 2018-01-25 dtu [pinpoint] Increase max attempt count from 40 to 50. 2018-01-26 simonhatch Dashboard - If updating bug fails, retry without setting owner. 2018-01-25 prasadv Add Chromiumdash Client ID for api authentication 2018-01-26 perezju [Telemetry] Migrate CrOS browser and profile directories 2018-01-25 simonhatch Pinpoint - Store trace urls keyed by the filename. 2018-01-25 simonhatch Dashboard - Cleanup old perf-try code. Created with: roll-dep src/third_party/catapult The AutoRoll server is located here: https://catapult-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 TBR=sullivan@chromium.org Change-Id: I5b6e3d3ef67cad1937ca680a74857f4b546ee0d6 Reviewed-on: https://chromium-review.googlesource.com/890342 Commit-Queue: <catapult-deps-roller@chromium.org> Reviewed-by: <catapult-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#532201}
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/b9ec0b31a932..6e8a3e62e171 $ git log b9ec0b31a..6e8a3e62e --date=short --no-merges --format='%ad %ae %s' 2018-01-26 xlou Code cleanup - create a new function GetPageNumbers 2018-01-26 thestig Fix a wrong variable check in CFX_BilinearMatrix. 2018-01-26 thestig Pass nullptr to ParseContentWithParams() instead of 0. 2018-01-26 rharrison Clean up construction of CFX_Barcode 2018-01-26 hnakashima Fix crash in palette loading with Pattern colorspace. 2018-01-26 thestig Change CPDF_RenderStatus::ProcessPathPattern() to pass by pointer. 2018-01-26 thestig Mark some fxge class members as const. 2018-01-26 thestig Fix potential memory leak in CCodec_JpegModule::Start(). 2018-01-25 hnakashima Add timeout when downloading gold json. 2018-01-25 hnakashima Make private some methods in CPDF_DIBSource. 2018-01-25 dsinclair Remove empty FF classes Created with: roll-dep src/third_party/pdfium BUG=805881,805881 The AutoRoll server is located here: https://pdfium-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. TBR=dsinclair@chromium.org Change-Id: Ibaba86271a00d1311dbaabadb5e07683f63db4e3 Reviewed-on: https://chromium-review.googlesource.com/890340 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#532200}
-
src-internal-roller@chromium.org authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/9c4fd243124b..3594628af090 $ git log 9c4fd2431..3594628af --date=short --no-merges --format='%ad %ae %s' Created with: roll-dep src-internal The AutoRoll server is located here: https://src-internal-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. TBR=phajdan.jr@chromium.org Change-Id: I997128f5b2737d85c68cf93bb6cf183667b4213e Reviewed-on: https://chromium-review.googlesource.com/890341 Commit-Queue: src-internal-roller . <src-internal-roller@chromium.org> Reviewed-by:
src-internal-roller . <src-internal-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#532199}
-
Lei Zhang authored
- Mark some SpellcheckHunspellDictionary code non-Android. - Use base::StringPiece a little more. - Fix nits / style. Change-Id: Ibe2e7bf14678f7fbfc976d42964091afa138bbec Reviewed-on: https://chromium-review.googlesource.com/838370Reviewed-by:
Rouslan Solomakhin <rouslan@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#532198}
-
Donna Wu authored
This is a preparation work for MTP servicification. BUG=769630 Change-Id: Id1cf84e96270004efcfba0d3584ea6a2b01867bb Reviewed-on: https://chromium-review.googlesource.com/875562 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#532197}
-
Victor Costan authored
Release notes for the new version: https://sqlite.org/releaselog/3_22_0.html The new release contains minor bugfixes and optimizations. Only trivial changes were needed while rebasing Chromium's patches. Bug: 805126 Change-Id: I35f893d7f707a805f485184cb3afe33276febae9 Reviewed-on: https://chromium-review.googlesource.com/882193 Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Chris Mumford <cmumford@chromium.org> Cr-Commit-Position: refs/heads/master@{#532196}
-
Victor Costan authored
Bug: 805814 Change-Id: Ia1cac2e6ce3da10997ff722b5d5095651c4ca586 Reviewed-on: https://chromium-review.googlesource.com/885921Reviewed-by:
Marijn Kruisselbrink <mek@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#532195}
-
webrtc-autoroll@chromium.org authored
https://webrtc.googlesource.com/src.git/+log/beabdcb49810..22da89f502ab $ git log beabdcb49..22da89f50 --date=short --no-merges --format='%ad %ae %s' Created with: roll-dep src/third_party/webrtc The AutoRoll server is located here: https://webrtc-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.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng;master.tryserver.chromium.win:win-msvc-dbg TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I97d3e36e653c0603d2c79b5640e6bd60aca22ae5 Reviewed-on: https://chromium-review.googlesource.com/890201 Commit-Queue: WebRTC Roll Bot <webrtc-autoroll@chromium.org> Reviewed-by:
WebRTC Roll Bot <webrtc-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#532194}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/2fce0c43..143d9c6f Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. 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=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I4490c5d899c020b816290012298cb711d1f9f315 Reviewed-on: https://chromium-review.googlesource.com/889960Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#532193}
-
Alex Moshchuk authored
This CL fixes a problem in RequestTransferURL(), where in the case of a form submission to the main frame, the FrameNavigationEntry's method was never updated. Bug: 806215 Change-Id: I1614a0e51f91b0d3346ce633bf8f027cf3609f15 Reviewed-on: https://chromium-review.googlesource.com/889646 Commit-Queue: Nasko Oskov <nasko@chromium.org> Reviewed-by:
Łukasz Anforowicz <lukasza@chromium.org> Cr-Commit-Position: refs/heads/master@{#532192}
-
Wenzhao Zang authored
When showing the wallpaper picker for the first time after OOBE, |saveThumbnail| may not completed, when the bottom left small thumbnail to show. In this case, initial a HTTP request to fetch the thumbnail. Bug: 792829 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I3016687326156bc25d7a0e9a09c770efd1d1b4d7 Reviewed-on: https://chromium-review.googlesource.com/887963 Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Reviewed-by:
Xiaoqian Dai <xdai@chromium.org> Cr-Commit-Position: refs/heads/master@{#532191}
-
Wenzhao Zang authored
Bug: 782632 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: If7a66b80f2ab0ade5e1543886f9e5a1eeb7779b7 Reviewed-on: https://chromium-review.googlesource.com/888039Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#532190}
-
Wenzhao Zang authored
TBR=rockot@chromium.org Bug: 804986 Change-Id: I4b16892cfe7705d4a5d6dd82ccba8de176283ca2 Reviewed-on: https://chromium-review.googlesource.com/889647Reviewed-by:
Wenzhao (Colin) Zang <wzang@chromium.org> Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#532189}
-
Philip Jägenstedt authored
This is a functional revert of https://codereview.chromium.org/192693002. Per `git log -S CreateFunctionHandler`, this API was never used, and was only part of refactoring: https://codereview.chromium.org/671433004 https://chromium-review.googlesource.com/760376 Change-Id: Ibcbad96a7f145dbf14e87e70a59318802971ba3f Reviewed-on: https://chromium-review.googlesource.com/886442Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Cr-Commit-Position: refs/heads/master@{#532188}
-
Marijn Kruisselbrink authored
The WebBlobInfo instances already contain all the BlobDataHandles, so no reason to store both. Bug: none Change-Id: I308c790040af3cd7efea9fdd20520a4ded05a797 Reviewed-on: https://chromium-review.googlesource.com/884374 Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#532187}
-
Jeremy Roman authored
This removes the custom workaround to emulate this behavior. A unit test is adjusted to reflect the fact that a previously generated API binding will continue to be returned. Bug: 653596 Change-Id: Ib158164234e111180a00750ba736cd303be391c0 Reviewed-on: https://chromium-review.googlesource.com/867517 Commit-Queue: Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Cr-Commit-Position: refs/heads/master@{#532186}
-
Eric Karl authored
When caching very large images in the GPU image decode cache, we don't upload to the GPU, but instead just cache the CPU side data for re-use. Unfortunately, we currently perform color conversion post upload, which means that, in the SW-only case, we end up re-converting images on every use. This patch causes SW-only cache entries to have their color conversion done at decode time, ensuring we persist it in the cache. Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: I26831b119dffff09f977567631dd2dc7e99e7978 Bug: 802819 Reviewed-on: https://chromium-review.googlesource.com/877106 Commit-Queue: Eric Karl <ericrk@chromium.org> Reviewed-by:
Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#532185}
-
Lei Zhang authored
The code encodes to PWG Raster Format, which is a standard from the Printer Working Group. In Chromium, it is used for Google Cloud Print, but other embedders can potentially use it for their own printing needs. Move it out of chrome/utility/cloud_print. The encoder is mostly self contained. It only depends on base/ and ui/gfx/. Change-Id: Iccfdb5af5a9e21e1fb596c292a645aeb2bca9bea Reviewed-on: https://chromium-review.googlesource.com/876981 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Reviewed-by:
Jay Civelli <jcivelli@chromium.org> Cr-Commit-Position: refs/heads/master@{#532184}
-
Lei Zhang authored
Change-Id: I27d42d74889d455ac162c5701868fb5f2e837261 Reviewed-on: https://chromium-review.googlesource.com/885863Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#532183}
-
Karan Bhatia authored
This CL adds move constructor and move assignment operator to URLPatternSet. A sample usage is also also added to ExternallyConnectableInfo preventing a copy. BUG=None Change-Id: Ic2de83dcdcb12e13523b78cb18deb2da2eead6a7 Reviewed-on: https://chromium-review.googlesource.com/888084Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Commit-Queue: Karan Bhatia <karandeepb@chromium.org> Cr-Commit-Position: refs/heads/master@{#532182}
-
Daniel Bratell authored
In jumbo builds, many cc files share the same anonymous namespace since they are compiled in the same translation unit. Then methods that would otherwise not clash cause symbol collisions. This patch renames two identical BindConnectorRequest methods. A better fix may be to find a shared location but there is no obvious shared location between media/casting and pepper/flash. Bug: 746957 Change-Id: I80b4806140720824fefd1d0019537b6fd89683da Reviewed-on: https://chromium-review.googlesource.com/878363Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#532181}
-
Nico Weber authored
This CL was uploaded by git cl split. R=sadrul@chromium.org Bug: 177475 Change-Id: I39e7b389e2bb228ca717c2029a7c34d2f32b6446 Reviewed-on: https://chromium-review.googlesource.com/890063 Commit-Queue: Nico Weber <thakis@chromium.org> Commit-Queue: Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Cr-Commit-Position: refs/heads/master@{#532180}
-