- 29 Oct, 2018 28 commits
-
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/38e4fd0c5654..79c96811863f git log 38e4fd0c5654..79c96811863f --date=short --no-merges --format='%ad %ae %s' 2018-10-29 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 bfe31c42e15e..df73a8e5ffdb (1 commits) Created with: gclient setdep -r src/third_party/skia@79c96811863f The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll 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=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel TBR=herb@chromium.org Change-Id: If265c09d27a86df48b052670d72263e56496eeb6 Reviewed-on: https://chromium-review.googlesource.com/c/1303737Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603421}
-
Stuart Langley authored
This just gets the mocks to be closure compiled, there will likely be more changes when we start taking direct dependencies. Bug: 860355 Change-Id: I7ddfe6f82830a3d2e5b0858596dba80f921e5534 Reviewed-on: https://chromium-review.googlesource.com/c/1304036Reviewed-by:
Luciano Pacheco <lucmult@chromium.org> Commit-Queue: Stuart Langley <slangley@chromium.org> Cr-Commit-Position: refs/heads/master@{#603420}
-
Koji Ishii authored
This patch fixes recent type chagnes for: * LineBoxList * NGLayoutInputNode * NGPaintFragment * FontPlatformData and fixes a Unicode string issue in wtf::StringImpl. Tested by enabling warning in Visual Studio 2017. Change-Id: I60bc866a1c8eb7b7e2da0ffdb48044a6ab848fd9 Reviewed-on: https://chromium-review.googlesource.com/c/1288930Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Commit-Queue: Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#603419}
-
Hirokazu Honda authored
Currently, the pixel format of video frame passed from Android container is always I420. This is because color format conversion is done in ARC++ container. For zero format conversion (go/arc-vide0Capture), we needs to be able to pass all pixel formats supported by our ARC++ HW video encoder to Chrome. If the color format conversion is needed, it is performed in Chrome side by HW/SW ImageProcessor. The below is the table of YUV pixel formats supported by HW video encoder and media::PixelFormat in Chrome side. media::VideoPixelFormat associated with HAL_PIXEL_FORMAT_YCBCR_420_888 is dependent on platform, but one of three formats, which minigbm actually decides. HAL Pixel Format (Android) media::VideoPixelFormat (Chrome) -------------------------------------------------------------------- HAL_PIXEL_FORMAT_YV12 -> PIXEL_FORMAT_YV12 HAL_PIXEL_FORMAT_YCRCB_420_SP -> PIXEL_FORMAT_NV12 HAL_PIXEL_FORMAT_YCBCR_420_888 -> PIXEL_FORMAT_YV12, PIXEL_FORMAT_NV12, PIXEL_FORMAT_NV21 HAL_PIXEL_FORMAT_RGBX_8888 -> PIXEL_FORMAT_XBGR HAL_PIXEL_FORMAT_RGBA_8888 -> PIXEL_FORMAT_ABGR HAL_PIXEL_FORMAT_BGRA_8888 -> PIXEL_FORMAT_ARGB [I420] (No enum for this) -> PIXEL_FORMAT_I420 BUG=chromium:894381 TEST=CtsMediaTestCases on eve Change-Id: If95c40fd673603adaf4eb8e95afdf5142f59ad4c Reviewed-on: https://chromium-review.googlesource.com/c/1301573 Commit-Queue: Hirokazu Honda <hiroh@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#603418}
-
Jia authored
This model is responsible to train a brightness curve. Bug: 881215 Change-Id: Ic0c474a0c1f8db6e5f14ae6b738f4d4a1086bf4b Reviewed-on: https://chromium-review.googlesource.com/c/1300353 Commit-Queue: Jia Meng <jiameng@chromium.org> Reviewed-by:
Andrew Moylan <amoylan@chromium.org> Cr-Commit-Position: refs/heads/master@{#603417}
-
Kent Tamura authored
https://google.github.io/styleguide/cppguide.html#Namespace_Names > Namespace names are all lower-case. * v8_attributes.py and make_element_type_helpers.py Add support of lower-cased foo_names, kFooAttr and kFooTag. This CL has no behavior changes. Bug: 889726 Change-Id: Ie8e547a60901d6e4b9eb93cf9c25b48892082871 Reviewed-on: https://chromium-review.googlesource.com/c/1304174Reviewed-by:
Hitoshi Yoshida <peria@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#603416}
-
Joel Hockey authored
Currently deb files can only be installed into the crostini container in FilesApp if they are already in Linux files. Now, files will be shared with the container if they are in a sharable volume such as Downloads or Drive, so deb files at these locations can be installed. Bug: 878324 Change-Id: I126568eefec1506a205035d9f8a585548f92b527 Reviewed-on: https://chromium-review.googlesource.com/c/1301133Reviewed-by:
Timothy Loh <timloh@chromium.org> Commit-Queue: Joel Hockey <joelhockey@chromium.org> Cr-Commit-Position: refs/heads/master@{#603415}
-
Hirokazu Honda authored
VideoPixelFormat doesn't have values for XBGR and ABGR, even though it has ones for ARGB, XRGB, RGB and RGBA. This adds XBGR and ABGR so that all sorts of RGBA formats are in VideoPixelFormat. They are not used on Chrome stack. On the other hand, in ARC++, Android container can pass XBGR and ABGR formatted buffer. Those values are thus needed. BUG=894381 TEST=./media_unittests on Linux Change-Id: I03fda9a9afa9ae1d5dfa7af873898665f9ac2d9d Reviewed-on: https://chromium-review.googlesource.com/c/1302933Reviewed-by:
Fredrik Hubinette <hubbe@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Hirokazu Honda <hiroh@chromium.org> Cr-Commit-Position: refs/heads/master@{#603414}
-
Koji Ishii authored
Following bot results are included. 11102 11103 11106 11108 11114 11117 11120 11125 11126 11127 11128 11131 11132 11135 11138 11142 2 lines were removed and 15 lines were deflaked by consecutive results since 11114. TBR=eae@chromium.org, mstensho@chromium.org NOTRY=true Bug: 591099 Change-Id: I1c9aead38ef4f5a391850a3ce2fde4eb3935f4cd Reviewed-on: https://chromium-review.googlesource.com/c/1301574 Commit-Queue: Koji Ishii <kojii@chromium.org> Reviewed-by:
Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#603413}
-
Jinsuk Kim authored
TabBrowserControlsOffsetHelper is Tab UserData which should not be accessed after the tab is destroyed. This was not taken into account when referenced in ChromeFullscreenManager. This CL adds the missing check against Tab for its state, and also ensures the tab reference in the manager is set to null on its destruction. Bug: 897922 Change-Id: I20f0c5e87de1b3c7025d88ccfc00b7d157c6975c Reviewed-on: https://chromium-review.googlesource.com/c/1297856 Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#603412}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/5d3555497392..22a8f98dd55b git log 5d3555497392..22a8f98dd55b --date=short --no-merges --format='%ad %ae %s' 2018-10-29 benwright@webrtc.org Formatted sslidenty.cc and moved non referenced functions into an 2018-10-29 benwright@webrtc.org Formatting OpenSSLCertificate and doing some minor code cleanup. Created with: gclient setdep -r src/third_party/webrtc@22a8f98dd55b The AutoRoll server is located here: https://autoroll.skia.org/r/webrtc-chromium-autoroll 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=luci.chromium.try:linux_chromium_archive_rel_ng;luci.chromium.try:mac_chromium_archive_rel_ng TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: Ic0368699cbf2d5edd6389aa0534c737fff6e9736 Reviewed-on: https://chromium-review.googlesource.com/c/1304134Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603411}
-
Jungshik Shin authored
See https://chromium.googlesource.com/chromium/deps/icu/+/42d5027 for changes. Change CurrencyFormatting unit test to be more robust against CLDR data change in space characters (U+0020, U+00A0, U+202F). Removes unnecessary/version-specific 'using namespace icu_62'. locale data update/addition in CLDR and the addition of line_loose rule for v8's Ecma 402 Intl.Segmenter implementation. ICU code size increase of 20kB is also necessary to support new character properties (Indic_*). It can potentially save the code size elsewhere (e.g. Blink's shaping code). EcmaScrpt Unicode regex is likely to need them soon. Binary-Size: ICU data increase of 9.8 kB is expected because of the Bug: 893196, v8:8272 Test: *_unittests, layout_tests, webkit* tests Change-Id: Ib9fd7f75a025dd0d727a1b8774849a13381f6e63 Reviewed-on: https://chromium-review.googlesource.com/c/1289168Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Rouslan Solomakhin <rouslan@chromium.org> Reviewed-by:
Dominik Röttsches <drott@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#603410}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/bfe31c42e15e..df73a8e5ffdb git log bfe31c42e15e..df73a8e5ffdb --date=short --no-merges --format='%ad %ae %s' 2018-10-29 jiajia.qin@intel.com ES31: Use std::map<const TField *, BlockMemberInfo> to save ssbo info Created with: gclient setdep -r src/third_party/angle@df73a8e5ffdb The AutoRoll server is located here: https://autoroll.skia.org/r/angle-chromium-autoroll 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=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=ynovikov@chromium.org Change-Id: I27123d52afd0dd73819cefe79ddbbb20e0095dd7 Reviewed-on: https://chromium-review.googlesource.com/c/1303735Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603409}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/5af2ef140b3b..985747be8cfb Created with: gclient setdep -r src-internal@985747be8cfb The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I0f90a91fef7a3488e3675280078f8c11437f86d5 Reviewed-on: https://chromium-review.googlesource.com/c/1304133Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603408}
-
Tetsui Ohkubo authored
This CL removes all references to IsSystemTrayUnifiedEnabled in ash. Files that will be removed entirely are intentionally excluded from this CL. References from chrome/ will be removed in another CL. This is the part 2 of removing old System Tray code. (1) Removing the flag (2) Removing references to IsSystemTrayUnifiedEnabled() (3) Removing classes that are only used in old System Tray I'll try to keep the number of CLs as small as possible to make the history clean, but there can be multiple CLs for both part 2 and part 3 because some of them requires nontrivial refactoring to remove the dependency to the old code. TEST=trybot pass BUG=898419 Change-Id: Ib8ce6f594ab3800bec7e5e746e126f1675fb1800 Reviewed-on: https://chromium-review.googlesource.com/c/1298943Reviewed-by:
James Cook <jamescook@chromium.org> Commit-Queue: Tetsui Ohkubo <tetsui@chromium.org> Cr-Commit-Position: refs/heads/master@{#603407}
-
chrome-release-bot authored
# This is an automated release commit. # Do not revert without consulting chrome-pmo@google.com. NOAUTOREVERT=true TBR=mmoss@chromium.org Change-Id: Ie4c4ad239f39a36521f83e5cefec57737bf37b73 Reviewed-on: https://chromium-review.googlesource.com/c/1303889Reviewed-by:
chrome-release-bot@chromium.org <chrome-release-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#603406}
-
Tetsui Ohkubo authored
This CL removes references to IsSystemTrayUnifiedEnabled in chrome/browser/. tray_accessibility_browsertest and first_run_controller are intentionally left as the first one will be moved to ash/, and the second one will be updated in a separate CL. This is the part 2 of removing old System Tray code. (1) Removing the flag (2) Removing references to IsSystemTrayUnifiedEnabled() (3) Removing classes that are only used in old System Tray I'll try to keep the number of CLs as small as possible to make the history clean, but there can be multiple CLs for both part 2 and part 3 because some of them requires nontrivial refactoring to remove the dependency to the old code. TEST=trybot pass BUG=898419 Change-Id: Ib1d046bae25a61354bba5dd8d0ce62ba938c015f Reviewed-on: https://chromium-review.googlesource.com/c/1301054Reviewed-by:
James Cook <jamescook@chromium.org> Commit-Queue: Tetsui Ohkubo <tetsui@chromium.org> Cr-Commit-Position: refs/heads/master@{#603405}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/2616594045eb..5d3555497392 git log 2616594045eb..5d3555497392 --date=short --no-merges --format='%ad %ae %s' 2018-10-28 benwright@webrtc.org Rename private member functions to use CamelCase. 2018-10-28 benwright@webrtc.org Makes OpenSSL concrete implementations final. Created with: gclient setdep -r src/third_party/webrtc@5d3555497392 The AutoRoll server is located here: https://autoroll.skia.org/r/webrtc-chromium-autoroll 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=luci.chromium.try:linux_chromium_archive_rel_ng;luci.chromium.try:mac_chromium_archive_rel_ng TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: Id2d9f1065954cce7470c922717fa40018816d9e6 Reviewed-on: https://chromium-review.googlesource.com/c/1304054Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603404}
-
Luciano Pacheco authored
Fix flakiness by adding call to this.expanded=true in EntryListItem. Change updateSubDirectories: - use arrow function and const; - change error callback calling style to match the same style used by success callback (without if). - change check from isFakeEntry to check for presence of the method that's used "createReader". Change the sorting to be an method, so it can be customized per sub-class, later it will be used to sort My files to show Linux and Play files at the bottom. Fix unittest that started failing because it metadataModel was null. No changes in behaviour for users, the small change in behaviour is EntryListItem.updateSubDirectories now reads its children using FS API which isn't synchronous. Change-Id: I1019247e776e266cdd980a4c8a8338bf2b516b87 Reviewed-on: https://chromium-review.googlesource.com/c/1300993 Commit-Queue: Luciano Pacheco <lucmult@chromium.org> Reviewed-by:
Joel Hockey <joelhockey@chromium.org> Cr-Commit-Position: refs/heads/master@{#603403}
-
Mitsuru Otsuka authored
Added a cli flag as well as a gui flag for notification expansion animation on chrome side. Test: Manually tested animations after turning on/off the flag. Bug: b/117914707 Change-Id: Ib388661bcc1da1d41bb86e4976c2a3ea4ba8195a Reviewed-on: https://chromium-review.googlesource.com/c/1297774Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Greg Kerr <kerrnel@chromium.org> Reviewed-by:
Hidehiko Abe <hidehiko@chromium.org> Reviewed-by:
Yoshiki Iguchi <yoshiki@chromium.org> Reviewed-by:
Tetsui Ohkubo <tetsui@chromium.org> Commit-Queue: Mitsuru Otsuka <mitsuruo@google.com> Cr-Commit-Position: refs/heads/master@{#603402}
-
John Budorick authored
Tbr: rsesek@chromium.org Bug: 828031 Change-Id: I22ec9c5611fa22b40964623c7ff0ff850c6cf911 Reviewed-on: https://chromium-review.googlesource.com/c/1303808 Commit-Queue: John Budorick <jbudorick@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#603401}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/b10626c96f0c..5af2ef140b3b Created with: gclient setdep -r src-internal@5af2ef140b3b The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I323406e09c46f21b48f9cf2e57e7c6ff94a556aa Reviewed-on: https://chromium-review.googlesource.com/c/1304055Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603400}
-
Kent Tamura authored
https://google.github.io/styleguide/cppguide.html#Namespace_Names > Namespace names are all lower-case. This CL updates media_feature_symbol.py so that it produces kFooBar${suffix}. So to_function_name filter in make_media_features.py adjusts its input by [1:] in order to omit the leading 'k'. Also, this CL fixes missing dependencies in core/BUILD.gn. This CL has no behavior changes. Bug: 889726 Change-Id: If8bf9e1f9dcf4f2ad359b0b6af748f7359f56d0d Reviewed-on: https://chromium-review.googlesource.com/c/1301593 Commit-Queue: Kent Tamura <tkent@chromium.org> Reviewed-by:
Hitoshi Yoshida <peria@chromium.org> Cr-Commit-Position: refs/heads/master@{#603399}
-
Christopher Lam authored
Bug: 898184 Change-Id: I714c83bcac42c096b70ae281f5441f53bd41eb13 Reviewed-on: https://chromium-review.googlesource.com/c/1297216Reviewed-by:
Alan Cutter <alancutter@chromium.org> Commit-Queue: calamity <calamity@chromium.org> Cr-Commit-Position: refs/heads/master@{#603398}
-
Sam McNally authored
NTPContentSuggestionsEnabled is not supported on ChromeOS, but has a default value for enterprise users. Setting a default policy for this triggers error logging at startup: Unknown policy: NTPContentSuggestionsEnabled Since the policy is unsupported, setting the default is unnecessary so don't generate code to do so. Change-Id: I108453c043a622b10397850547c94de967c7fb37 Reviewed-on: https://chromium-review.googlesource.com/c/1298528Reviewed-by:
Pavol Marko <pmarko@chromium.org> Commit-Queue: Sam McNally <sammc@chromium.org> Cr-Commit-Position: refs/heads/master@{#603397}
-
chromium-autoroll authored
The AutoRoll server is located here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll 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=luci.chromium.try:fuchsia_arm64_cast_audio;luci.chromium.try:fuchsia_x64_cast_audio TBR=cr-fuchsia+bot@chromium.org Change-Id: I26aaedad776c0e2a98fe9dfd06159de6ceb20135 Reviewed-on: https://chromium-review.googlesource.com/c/1304053Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603396}
-
Thomas Tangl authored
- Remove the no-search property from the sync page elements when unified consent is enabled. - Assign the correct associated-control property to the settings-subpage element. Bug: 891494 Change-Id: I968860a49d9be93a4cdb0319946a72ab8c3ea3ef Reviewed-on: https://chromium-review.googlesource.com/c/1301599Reviewed-by:
Scott Chen <scottchen@chromium.org> Commit-Queue: Thomas Tangl <tangltom@chromium.org> Cr-Commit-Position: refs/heads/master@{#603395}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/5a3af10a9801..b10626c96f0c Created with: gclient setdep -r src-internal@b10626c96f0c The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I4d9dd026bd40c824fa04ccfaa4904db2fad99f78 Reviewed-on: https://chromium-review.googlesource.com/c/1303612Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603394}
-
- 28 Oct, 2018 12 commits
-
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/43114e9f39c1..5a3af10a9801 Created with: gclient setdep -r src-internal@5a3af10a9801 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: Ie0bf88637c90d7c73af1b42cefdc29dc8bf0d807 Reviewed-on: https://chromium-review.googlesource.com/c/1303611Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603393}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/c8330189decf..43114e9f39c1 Created with: gclient setdep -r src-internal@43114e9f39c1 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I62589a245b38ef3ad2bb458ccbe50ee5cc802f10 Reviewed-on: https://chromium-review.googlesource.com/c/1303610Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603392}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/2b71832f6d8d..cb629a482b3d git log 2b71832f6d8d..cb629a482b3d --date=short --no-merges --format='%ad %ae %s' 2018-10-28 sergiyb@chromium.org Add an option to publish CL when posting comments Created with: gclient setdep -r src/third_party/depot_tools@cb629a482b3d The AutoRoll server is located here: https://autoroll.skia.org/r/depot-tools-chromium-autoroll 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=agable@chromium.org Change-Id: I94f70f45079dc3b0e6b59c3986f7fdfe54e6ad8d Reviewed-on: https://chromium-review.googlesource.com/c/1303607Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603391}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/b53f1f46982d..38e4fd0c5654 git log b53f1f46982d..38e4fd0c5654 --date=short --no-merges --format='%ad %ae %s' 2018-10-28 recipe-roller@chromium.org Roll recipe dependencies (trivial). Created with: gclient setdep -r src/third_party/skia@38e4fd0c5654 The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll 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=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel TBR=herb@chromium.org Change-Id: I1e343071353c401ba0184d2a8aaa139dedcf28a0 Reviewed-on: https://chromium-review.googlesource.com/c/1303609Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603390}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/3333213340d7..c8330189decf Created with: gclient setdep -r src-internal@c8330189decf The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I1cf8961c3382a5637d967eee4579eb094d1a85d8 Reviewed-on: https://chromium-review.googlesource.com/c/1303608Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603389}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/b3fc15fc6627..3333213340d7 Created with: gclient setdep -r src-internal@3333213340d7 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: If345d8d35418e27716309bd487fcf82ca153cb76 Reviewed-on: https://chromium-review.googlesource.com/c/1303606Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603388}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/7e426f470c0d..b3fc15fc6627 Created with: gclient setdep -r src-internal@b3fc15fc6627 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I416f360ee3ca45aa5cfceeea96b231175d533deb Reviewed-on: https://chromium-review.googlesource.com/c/1303605Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603387}
-
Anthony Vallee-Dubois authored
Bug: 896089 Change-Id: Ifbf356ab0cb0e7fa222db7e9440adef927246e3a Reviewed-on: https://chromium-review.googlesource.com/c/1301875Reviewed-by:
Becky Zhou <huayinz@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: anthonyvd <anthonyvd@chromium.org> Cr-Commit-Position: refs/heads/master@{#603386}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/731577e9a262..7e426f470c0d Created with: gclient setdep -r src-internal@7e426f470c0d The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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=mmoss@chromium.org Change-Id: I7387f8be3ebf68bc2f931c52c8afa70491bbd229 Reviewed-on: https://chromium-review.googlesource.com/c/1303604Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603385}
-
Maksim Sisov authored
This patch enables native gpu memory buffers support by fixing compile time assumptions in client_native_pixmap_factory_dmabuf.cc. Now, the supports_import_from_dmabuf_ field is added to the client_native_pixmap_factory_dmabuf.h class, and it is used to identify whether *cpu_read_write buffer usages can be supported. Bug: 864914 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel Change-Id: Ifd7d3c6d3906990a79521867ee4e6a826ce4c618 Reviewed-on: https://chromium-review.googlesource.com/c/1238154 Commit-Queue: Maksim Sisov <msisov@igalia.com> Reviewed-by:
Michael Spang <spang@chromium.org> Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Reviewed-by:
Robert Kroeger <rjkroege@chromium.org> Cr-Commit-Position: refs/heads/master@{#603384}
-
Siddhartha authored
Adds a marker on stack so that stack unwinder is able to skip java frames to C++ directly if java frames did not emit unwind info. This happens frequently because of JIT code. BUG=859260 Change-Id: I104d2f26d89df2c706776002335b3969696fdd62 Reviewed-on: https://chromium-review.googlesource.com/c/1296827 Commit-Queue: ssid <ssid@chromium.org> Reviewed-by:
Cait Phillips <caitkp@chromium.org> Reviewed-by:
agrieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#603383}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/c57b98ca77eb..a56061dd6c20 git log c57b98ca77eb..a56061dd6c20 --date=short --no-merges --format='%ad %ae %s' 2018-10-28 primiano@google.com Merge "protozero: make proto-compiler output deterministic" Created with: gclient setdep -r src/third_party/perfetto@a56061dd6c20 The AutoRoll server is located here: https://autoroll.skia.org/r/perfetto-chromium-autoroll 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=perfetto-bugs@google.com Change-Id: I66c515998e7a9fbefd8ed46fb9fc62fc12b48007 Reviewed-on: https://chromium-review.googlesource.com/c/1303602Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#603382}
-