- 04 May, 2017 40 commits
-
-
capn authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/35e0ba7..5f72693 This mainly switches from using Subzero from DEPS to a copy from a Git subtree. BUG= TBR=kbr@chromium.org TEST=bots CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2856303002 Cr-Commit-Position: refs/heads/master@{#469262}
-
kouhei authored
They are broken as of now. BUG=718065 Review-Url: https://codereview.chromium.org/2859093002 Cr-Commit-Position: refs/heads/master@{#469261}
-
thestig authored
Review-Url: https://codereview.chromium.org/2855133002 Cr-Commit-Position: refs/heads/master@{#469260}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/af02d0f9..ff8039d7 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,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2863473004 Cr-Commit-Position: refs/heads/master@{#469259}
-
chrome-release-bot authored
Cr-Commit-Position: refs/heads/master@{#469258}
-
calamity authored
This CL adds showAtPosition to cr-action-menu which allows a client to specify a rect or point to anchor to and which side of the menu to align. This will be used in MD Bookmarks for right click context menus which require more flexible alignment. BUG=692837 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2814743007 Cr-Commit-Position: refs/heads/master@{#469257}
-
khorimoto authored
This CL also creates NetworkConnectionHandlerTetherDelegate, which controls both tether connections and disconnections when requested in NetworkConnectionHandler. BUG=672263 Review-Url: https://codereview.chromium.org/2857853005 Cr-Commit-Position: refs/heads/master@{#469256}
-
braveyao authored
When user denies screencapture by clicking 'Cancel' in OS permission dialog, Chrome will stop the capture after receiving the OnError() report. At this point, the |mMediaProjection| is not created yet and |mCaptureState| has moved to |ATTACHED|. So the capture state won't be |STOPPED| which will keep stopCapture() waiting at [1]. The fix is to change the capture state to |STOPPED| for such a scenario. [1]: https://cs.chromium.org/chromium/src/media/capture/content/android/java/src/org/chromium/media/ScreenCapture.java?l=324 BUG=718082 Review-Url: https://codereview.chromium.org/2857743003 Cr-Commit-Position: refs/heads/master@{#469255}
-
ananta authored
The AppCacheRequestHandler class provides functionality for serving network requests from the AppCache if applicable. This class is instantiated by the AppCacheInterceptor when a network request is initiated. Its lifetime depends on the associated URLRequest. The plan is to reuse this class in the network service world where we won't be intercepting network requests in the browser process. This effectively means that there won't be any URLRequest as well To achieve this the proposal is to provide an abstraction for a request called AppCachRequest. This class will have two subclasses at the moment. AppCacheURLRequest and AppCacheURLLoaderRequest. The AppCacheURLRequest class will be used by the current network implementation which relies on intercepting n/w requests. The AppCacheURLLoaderRequest class will be used by the network service mojo implementation. Next step is to provide an abstraction for the AppCacheURLRequestJob class. BUG=715632 TBR=jam Review-Url: https://codereview.chromium.org/2848493007 Cr-Commit-Position: refs/heads/master@{#469254}
-
jaydasika authored
This is similar to https://codereview.chromium.org/2838033002/ where we do that same thing for animating layers with singular transform BUG=717818 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel Review-Url: https://codereview.chromium.org/2858853002 Cr-Commit-Position: refs/heads/master@{#469253}
-
dbeam authored
R=dpapad@chromium.org BUG=582027 Review-Url: https://codereview.chromium.org/2860903002 Cr-Commit-Position: refs/heads/master@{#469252}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/461fa6ad8ed8..0356714916c3 $ git log 461fa6ad8..035671491 --date=short --no-merges --format='%ad %ae %s' 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=scroggo@chromium.org Change-Id: I7bca1d449502b19f0e4ec9530ac101c4da59c064 Reviewed-on: https://chromium-review.googlesource.com/495487Reviewed-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@{#469251}
-
allada authored
There was a regression recently that was fixed (https://codereview.chromium.org/2838673003/) but broke the network grouping experiment. This patch fixes that regression. We were deeming the item as not needing to be removed or added without checking if there is a new parent. R=dgozman,pfeldman BUG=718116 Review-Url: https://codereview.chromium.org/2856863006 Cr-Commit-Position: refs/heads/master@{#469250}
-
einbinder authored
BUG=716649 Review-Url: https://codereview.chromium.org/2859623002 Cr-Commit-Position: refs/heads/master@{#469249}
-
khmel authored
This disables safe ARC icon decoding which requires IPC. TEST=Test passes. BUG=709297 Review-Url: https://codereview.chromium.org/2856353002 Cr-Commit-Position: refs/heads/master@{#469248}
-
halliwell authored
Help diagnose bugs from non-usable keys more quickly. BUG=internal b/37379047 Review-Url: https://codereview.chromium.org/2861653003 Cr-Commit-Position: refs/heads/master@{#469247}
-
palmer authored
So that the UI strings are consistent across Chrome. BUG=706871 Review-Url: https://codereview.chromium.org/2791433002 Cr-Commit-Position: refs/heads/master@{#469246}
-
ekaramad authored
[refactor] - Use WebContents::FindFrameByFrameTreeNodeId() instead of manually searching all frames. This CL removes a manual for-loop and replaces it with the public API specified for this purpose. BUG=NONE Review-Url: https://codereview.chromium.org/2858143002 Cr-Commit-Position: refs/heads/master@{#469245}
-
Lucas Garron authored
Restore HPKP for facebook.com and preload [www.]messenger.com for HSTS+HPKP. BUG= TBR=agl@chromium.org Review-Url: https://codereview.chromium.org/2861943002 . Cr-Commit-Position: refs/heads/master@{#469244}
-
pdfium-deps-roller@chromium.org authored
https://pdfium.googlesource.com/pdfium.git/+log/0acfff302c03..28b44b03c133 $ git log 0acfff302..28b44b03c --date=short --no-merges --format='%ad %ae %s' 2017-05-03 thestig Clean up CRYPT_ArcFourCrypt(). 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: I406c719651fad5e5287df740c23839070ceec6ef Reviewed-on: https://chromium-review.googlesource.com/495428 Reviewed-by: <pdfium-deps-roller@chromium.org> Commit-Queue: <pdfium-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#469243}
-
wzang authored
1. Change popup overlay according to new specs. 2. Change the reset alert icon 3. Other miscellaneous changes (Put powerwash texts in one line etc.) BUG=715851 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2847603002 Cr-Commit-Position: refs/heads/master@{#469242}
-
ben authored
R=rockot@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2851173004 Cr-Commit-Position: refs/heads/master@{#469241}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/6d4b65e9dad9..461fa6ad8ed8 $ git log 6d4b65e9d..461fa6ad8 --date=short --no-merges --format='%ad %ae %s' 2017-05-03 msarett Add SkImage::makeColorSpace() with correct transfer fn behavior 2017-05-03 mtklein Revert "treat SkPMColor as sRGB in SkPM4f::FromPMColor()" 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=scroggo@chromium.org Change-Id: I83dbf7f19378ba6cb83707b0521cd326b67dd8e3 Reviewed-on: https://chromium-review.googlesource.com/495707Reviewed-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@{#469240}
-
Steven Holte authored
Instead of picking up a simple copy of histograms.xml, the metrics_metadata target will now by merging histograms.xml and enums.xml into single file. Scripts for enums now update enums.xml, pretty_print.py will enforce that the split is continued, and validation is updated to run on the merged result. To be landed after the server side parsing code is fully migrated to using the archived metrics_metadata.zip files. BUG:699328 TBR = tnagel,bbudge Change-Id: Ia701423b7f2117991275477a92f77048a542b6db Reviewed-on: https://chromium-review.googlesource.com/481901 Commit-Queue: Steven Holte <holte@chromium.org> Reviewed-by:
Bill Budge <bbudge@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#469239}
-
jinho.bang authored
Reason for revert: This patch is causing some PaymentManager tests to fail. (https://crrev.com/2858773002) Original issue's description: > PaymentHandler: Implement PaymentInstruments.keys(). > > The method to return keys of the stored payment instruments in insertion order. > > Related Spec Link: > https://w3c.github.io/webpayments-payment-handler/#paymentinstruments-interface > > BUG=661608 > TEST=payment_manager_unittest.cc, payment-instruments.html > > Review-Url: https://codereview.chromium.org/2850203002 > Cr-Commit-Position: refs/heads/master@{#468747} > Committed: https://chromium.googlesource.com/chromium/src/+/09c61ecc5adf140aa7a59aef0ecacc510e0be1d8 BUG=661608 Review-Url: https://codereview.chromium.org/2859803002 Cr-Commit-Position: refs/heads/master@{#469238}
-
mikecase authored
Review-Url: https://codereview.chromium.org/2786773002 Cr-Commit-Position: refs/heads/master@{#469237}
-
bpastene authored
TBR=jbudorick@chromium.org BUG= Review-Url: https://codereview.chromium.org/2861583009 Cr-Commit-Position: refs/heads/master@{#469236}
-
thomasanderson authored
R=dpranke@chromium.org Review-Url: https://codereview.chromium.org/2847833002 Cr-Commit-Position: refs/heads/master@{#469235}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/779720b9..af02d0f9 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,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2856323002 Cr-Commit-Position: refs/heads/master@{#469234}
-
nednguyen authored
Motivation: In order to support tracing metrics for prepareToMeasureValuesAsync method, we need to be able to trigger tracing between prepareToMeasureValuesAsync & actual test run. This CL rename prepareToMeasureValuesAsync method to startMeasureValuesAsyn & refactor it so that the actual test code is specified as a callback, which allows the framework to interject the startTrace() call before running test in the future. BUG=701059 Review-Url: https://codereview.chromium.org/2858783003 Cr-Commit-Position: refs/heads/master@{#469233}
-
davidsz authored
Several //ipc headers will depend on a generated buildflag header and we have to guarantee the existence of this header before the build of these source sets. BUG=711302 Review-Url: https://codereview.chromium.org/2852273002 Cr-Commit-Position: refs/heads/master@{#469232}
-
sky authored
Two problems here: . timeout is in seconds, not minutes. . hard_timeout needs to be inside the swarming block, otherwise it's not used at all. BUG=none TEST=none R=rockot@chromium.org TBR=rockot@chromium.org Review-Url: https://codereview.chromium.org/2856183002 Cr-Commit-Position: refs/heads/master@{#469231}
-
tapted authored
Currently when a checkbox is the extra view, the checkbox tends to cause the other buttons in a dialog to get bigger. This is because Checkbox extends LabelButton, so the check using AsCustomButton() will classify it the same way. To fix, explicitly filter out Checkboxes from the equal-sizing logic in DialogClientView. BUG=671820 Review-Url: https://codereview.chromium.org/2855623004 Cr-Commit-Position: refs/heads/master@{#469230}
-
khorimoto authored
The implementation is now part of a class private to network_connection_handler.cc. This is in preparation for using a test double for NetworkConnectionHandler. BUG=672263 Review-Url: https://codereview.chromium.org/2861883002 Cr-Commit-Position: refs/heads/master@{#469229}
-
Lucas Garron authored
BUG= TBR=palmer@chromium.org Review-Url: https://codereview.chromium.org/2859983002 . Cr-Commit-Position: refs/heads/master@{#469228}
-
kbr authored
BUG=none TBR=junov@chromium.org Review-Url: https://codereview.chromium.org/2856223005 Cr-Commit-Position: refs/heads/master@{#469227}
-
pdyson authored
BUG=705331 Review-Url: https://codereview.chromium.org/2850533003 Cr-Commit-Position: refs/heads/master@{#469226}
-
binji authored
See https://html.spec.whatwg.org/multipage/infrastructure.html#safe-passing-of-structured-data And the web platform test here: https://github.com/w3c/web-platform-tests/blob/master/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/serialization-via-notifications-api.any.js BUG=chromium:718192 Review-Url: https://codereview.chromium.org/2860873002 Cr-Commit-Position: refs/heads/master@{#469225}
-
kbr authored
They're intermittently running out of memory. Seems difficult to guarantee that resources will be reclaimed promptly enough for large allocations to succeed all the time. BUG=717023 TBR=zmo@chromium.org 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 Review-Url: https://codereview.chromium.org/2857583006 Cr-Commit-Position: refs/heads/master@{#469224}
-
hzl authored
BUG=717417 Review-Url: https://codereview.chromium.org/2863523003 Cr-Commit-Position: refs/heads/master@{#469223}
-