- 05 Sep, 2018 40 commits
- 
- 
Tatiana Buldina authoredChange-Id: I9c6f935e3ce9b55297151dd8eabc57c15754081b Reviewed-on: https://chromium-review.googlesource.com/1204850 Commit-Queue: Tatiana Buldina <buldina@chromium.org> Reviewed-by: John Chen <johnchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#589005} 
- 
David Tseng authoredThe Tts engine component extension was converted to an event page in: https://chromium-review.googlesource.com/c/chromiumos/platform/assets/+/447000/5/speech_synthesis/patts/manifest.json This means the extension is aggressively unloaded. In particular, on startup, it is not loaded until the extension receives a request. In code paths that require the engine to be awake, explicitly wake the event page. Bug: 880556 Change-Id: If49f3b59440bd64a9a0af7382f25e054285a26bf Reviewed-on: https://chromium-review.googlesource.com/1205092 Commit-Queue: David Tseng <dtseng@chromium.org> Reviewed-by: Hector Carmona <hcarmona@chromium.org> Reviewed-by: Katie Dektar <katie@chromium.org> Cr-Commit-Position: refs/heads/master@{#589004} 
- 
Samuel Huang authoredThis reverts commit 0060319d. Reason for revert: http://crbug.com/881042 : exo_unittests failing on chromium.memory/Linux Chromium OS ASan LSan Tests (1) : Speculative revert to see if it fixes the memory leak (also in other tests). Original change's description: > Disable lock screen notification by default > > The feature is not launched on M70. This CL should be merged to M70 branch as well. > > R: yamaguchi@chromium.org > TBR: oshima@chromium.org > Bug: 880227 > Change-Id: I2d8f3dbe97bcd0c8d28cfe775e2c86dd1e169d11 > Reviewed-on: https://chromium-review.googlesource.com/1206551 > Reviewed-by: Tatsuhisa Yamaguchi <yamaguchi@chromium.org> > Commit-Queue: Yoshiki Iguchi <yoshiki@chromium.org> > Cr-Commit-Position: refs/heads/master@{#588815} TBR=yoshiki@chromium.org,oshima@chromium.org,yamaguchi@chromium.org Change-Id: I8fe6b9ca4fbf195e229e44d5a85e1c5589733e8b No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 880227 Reviewed-on: https://chromium-review.googlesource.com/1208136Reviewed-by: Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#589003} 
- 
Sean Topping authoredIn some cases, the main gesture handler might permanently have priority, and lower priority handlers (such as the root UI) will never receive a gesture until that handler is removed. This change ensures that if a user attempts multiple gestures in quick succession, that the root UI will receive the gesture instead. This mitigates buggy gesture handling logic and prevents the UI from being permanently stuck. then try to swipe several times in succession. Eventually the root UI should handle the swipe. Bug: internal b/112338841 Test: Run an app which is permanently able to handle gesture events, Change-Id: I741e041feba56b5e87ad8cb3ca5e1f564f48518b Reviewed-on: https://chromium-review.googlesource.com/1199967 Commit-Queue: Sean Topping <seantopping@chromium.org> Reviewed-by:Luke Halliwell <halliwell@chromium.org> Cr-Commit-Position: refs/heads/master@{#589002} 
- 
Reilly Grant authoredThis change adds support for handling the |to_be_removed_request_headers| and |modified_request_headers| parameters to FollowRedirect(). The changes are reflected in the stored request object and passed on to the underlying URLLoader. Bug: 880069 Change-Id: I5c79b358537c741467bd5e2d3a71d19cfa5dec42 Reviewed-on: https://chromium-review.googlesource.com/1207712Reviewed-by: Ken Rockot <rockot@chromium.org> Commit-Queue: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#589001} 
- 
Michael Nye authoredThis missing default can cause some audio streams to be muted by default. Bug: b/113075348 Test: Ran changes on developer device Change-Id: Icaa75cf3d78a85f978b91dfa1de44d21b9266328 Reviewed-on: https://chromium-review.googlesource.com/1192114 Commit-Queue: Michael Nye <michaelnye@chromium.org> Reviewed-by: Kenneth MacKay <kmackay@chromium.org> Reviewed-by: Luke Halliwell <halliwell@chromium.org> Cr-Commit-Position: refs/heads/master@{#589000} 
- 
Scott Violet authoredThe EventInjectorDelegate implementation for mus has a special EventTarget. The base class of EventInjectorDelegateMus assumes it can cast EventTargets to Window. The casting doesn't work for the special EventTarget (it isn't a Window). This patch adds the necessary overrides to special case the non-Window EventTarget. BUG=814675 TEST=covered by tests Change-Id: Icf2de31115e54630043c162ae45acdde2904877d Reviewed-on: https://chromium-review.googlesource.com/1208459Reviewed-by: Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#588999} 
- 
Jordy Greenblatt authoredThe new mocks switch the Settings UI page order near the MultiDevice (a.k.a. Connected Devices) sections from Network Connected devices Bluetooth to Network Bluetooth Connected devices See the new order in this screenshot of this CL deployed: https://screenshot.googleplex.com/TJuzLmqHNsL Bug: 871351 Change-Id: Iba4016a6ad9b0954f2d5b467aab17a293bd0102e Reviewed-on: https://chromium-review.googlesource.com/1205501Reviewed-by: Jeremy Klein <jlklein@chromium.org> Reviewed-by: Hector Carmona <hcarmona@chromium.org> Commit-Queue: Jordy Greenblatt <jordynass@chromium.org> Cr-Commit-Position: refs/heads/master@{#588998} 
- 
Filip Gorski authoredBug: 881000 Change-Id: Icfe8def8af1abce2e36bc9400d43ef27b5a1f678 Reviewed-on: https://chromium-review.googlesource.com/1208460Reviewed-by: Theresa <twellington@chromium.org> Commit-Queue: Filip Gorski <fgorski@chromium.org> Cr-Commit-Position: refs/heads/master@{#588997} 
- 
Daniel Erat authoredAdd a getHistogram function to the chrome.autotestPrivate that Chrome OS integration tests can call to get data about a given histogram. This will hopefully be more reliable than the current approach of parsing chrome://histograms. Bug: 878641, 844755 Change-Id: I9077c297a69742b9e225eefed52fe4b012d796fa Reviewed-on: https://chromium-review.googlesource.com/1200840 Commit-Queue: Dan Erat <derat@chromium.org> Reviewed-by: Devlin <rdevlin.cronin@chromium.org> Reviewed-by: Achuith Bhandarkar <achuith@chromium.org> Cr-Commit-Position: refs/heads/master@{#588996} 
- 
Daniel Zhang authoredFix bug where AppList bounds were 28 px too tall in peeking and closed states. Bug: 874200 Change-Id: I9b449c9310d946b405bb3b8f0610e5e1018c6872 Reviewed-on: https://chromium-review.googlesource.com/1205497Reviewed-by: Xiyuan Xia <xiyuan@chromium.org> Reviewed-by: Weidong Guo <weidongg@chromium.org> Commit-Queue: Daniel Zhang <oxyflush@google.com> Cr-Commit-Position: refs/heads/master@{#588995} 
- 
Chris Sharp authoredChange-Id: I4eb83bb32f60323b990a8066ab3a72df7e38359f TBR=grt@chromium.org Change-Id: I4eb83bb32f60323b990a8066ab3a72df7e38359f Reviewed-on: https://chromium-review.googlesource.com/1193746 Commit-Queue: Chris Sharp <csharp@chromium.org> Reviewed-by: Joe Mason <joenotcharles@chromium.org> Cr-Commit-Position: refs/heads/master@{#588994} 
- 
Jialiu Lin authoredIf user stays in advanced protection, ::OnGetIDToken(..) will not trigger scheduling next refresh. This CL fixes this issue. This CL also enables most unit tests on Chrome OS. Bug: 880931 Change-Id: I59d2c30b7a87bb59b755bea0b31b32081d21ef11 Reviewed-on: https://chromium-review.googlesource.com/1207577Reviewed-by: Daniel Rubery <drubery@chromium.org> Commit-Queue: Jialiu Lin <jialiul@chromium.org> Cr-Commit-Position: refs/heads/master@{#588993} 
- 
angle-chromium-autoroll authoredhttps://chromium.googlesource.com/angle/angle.git/+log/750e508722a9..79ec21c5d4cf git log 750e508722a9..79ec21c5d4cf --date=short --no-merges --format='%ad %ae %s' 2018-09-05 jmadill@chromium.org Small style guide amendments. Created with: gclient setdep -r src/third_party/angle@79ec21c5d4cf 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=fjhenigman@chromium.org Change-Id: Ic628b0b3c1840cd4ff801728a5b764ebe52b23ab Reviewed-on: https://chromium-review.googlesource.com/1208071Reviewed-by: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588992} 
- 
Daniel Erat authoredAdd a switch that can be used to supply an alternate interval (in seconds) between the ExternalMetrics class reading UMA events and histograms reported by Chrome OS system daemons from /var/lib/metrics/uma-events. I intend to use this in a test that will verify this reporting path (without needing to wait the current default of 30 seconds). Bug: 878641 Change-Id: I83f3ba70b7c32ddd598e1793a71900ef5b72b667 Reviewed-on: https://chromium-review.googlesource.com/1202023 Commit-Queue: Dan Erat <derat@chromium.org> Reviewed-by: Achuith Bhandarkar <achuith@chromium.org> Cr-Commit-Position: refs/heads/master@{#588991} 
- 
Samuel Huang authoredThis reverts commit f7f910d0. Reason for revert: https://crbug.com/881012 : chrome_public_test_apk failing on chromium.memory/Android CFI with new failure in org.chromium.chrome.browser.firstrun.FirstRunIntegrationTest#testRedirectChromeTabbedActivityToFirstRun Original change's description: > Add ActivityTabProvider to ChromeActivity > > This patch adds ActivityTabProvider to ChromeActivity. This class > provides an easy mechanism for classes that care about the tab > that is currently in the foreground (i.e. not in the tab > switcher/toolbar swipe/animation layout). > > The observer provides either the activity's tab or null depending > on the state of the browser. The null event can be ignored depending > on the listener. > > The ActivityTabObserver interface only has a single method: > onActivityTabChanged(Tab t) > > When an observer is attached to the provider, onActivityTabChanged is > called on only that observer with the current tab (giving it access > without requiring a handle to a larger object). > > Bug: 871279 > Change-Id: Ice961224c6690dc79c38f5d6cb255fed4730c8ce > Reviewed-on: https://chromium-review.googlesource.com/1165489 > Commit-Queue: Matthew Jones <mdjones@chromium.org> > Reviewed-by: Ted Choc <tedchoc@chromium.org> > Reviewed-by: Theresa <twellington@chromium.org> > Cr-Commit-Position: refs/heads/master@{#588872} TBR=tedchoc@chromium.org,twellington@chromium.org,mdjones@chromium.org Change-Id: I2e1a6991f0478632a95b53969394a2314392a5dd No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 871279 Reviewed-on: https://chromium-review.googlesource.com/1208361Reviewed-by: Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#588990} 
- 
Christian Biesinger authoredI'm trying to figure out why NGLink made things slower, and while I don't expect these changes to make the difference, they shouldn't hurt. R=eae@chromium.org Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng Change-Id: I7dd6f5130f3ebcd07dfb44d0af801ab28516bcc9 Reviewed-on: https://chromium-review.googlesource.com/1207650 Commit-Queue: Christian Biesinger <cbiesinger@chromium.org> Reviewed-by: Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#588989} 
- 
Zach Helfinstein authoredRefining the isActionable method to not include elements that are disabled. Bug: None Change-Id: I05f85282904af5025615cf8efde6945f219bad20 Reviewed-on: https://chromium-review.googlesource.com/1206030Reviewed-by: Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Zach Helfinstein <zhelfins@chromium.org> Cr-Commit-Position: refs/heads/master@{#588988} 
- 
Kenneth Russell authoredAfter the update to the 24.20.100.6286 driver, these tests should be passing. Re-enable: webgl_conformance_d3d9_tests webgl_conformance_d3d9_passthrough_tests conformance2/glsl3/short-circuiting-in-loop-condition.html Tbr: zmo@chromium.org Bug: 841789, 843369 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 Change-Id: I1ec732be8a283c2fdb68bf316943ee2d7d0b65b1 Reviewed-on: https://chromium-review.googlesource.com/1207652Reviewed-by: Kenneth Russell <kbr@chromium.org> Commit-Queue: Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#588987} 
- 
Ben Pastene authoredThe pak file gets generated when building chrome for HiDPI: https://codesearch.chromium.org/chromium/src/chrome/chrome_paks.gni?rcl=9a8cfdf0edde3f7d61d08b5890a94c038a15f3fb&l=220 But it doesn't show up in the target's data. Consequently, it's missing from tests' isolate. This should fix that. Bug: 878730 Change-Id: I1e95c41a18cfe88a83235b42605c53829f9a344f Reviewed-on: https://chromium-review.googlesource.com/1197826Reviewed-by: John Budorick <jbudorick@chromium.org> Commit-Queue: Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#588986} 
- 
chcunningham authoredTracking down crash in static mime parsing code. Hopefully all we need is the input string. Bug: 809912 Change-Id: Iacc44a26f981bf84a49eeeac24001f205b1f2a52 Reviewed-on: https://chromium-review.googlesource.com/1205994 Commit-Queue: Chrome Cunningham <chcunningham@chromium.org> Reviewed-by: Mounir Lamouri <mlamouri@chromium.org> Cr-Commit-Position: refs/heads/master@{#588985} 
- 
James Cook authoredPressing Ctrl-F creates a widget for DropdownBarHost and a textfield for the text entry view. The view requests focus, which calls into DesktopNativeWidgetAura::ClearNativeFocus() to return focus to the active widget's contents aura::Window. There's a special code path in FocusController for this case. However, the existing window service code in //services/ws was always using FocusController::FocusWindow() to maintain its version of focus. That code path blocks focusing a parent when a child is focused, see https://codereview.chromium.org/11519040 Instead, allow the window service to ResetFocusWithinActiveWindow() in this case, similar to what the client is doing. This fixes both Mash and SingleProcessMash. It also fixes a similar issue with Ctrl-L and omnibox focus. Bug: 880533 Change-Id: Iaa3132d7e32b96bf2ad33f781f6696ec9c88218d Reviewed-on: https://chromium-review.googlesource.com/1205498Reviewed-by: Scott Violet <sky@chromium.org> Commit-Queue: James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#588984} 
- 
spirv-chromium-autoroll authoredhttps://chromium.googlesource.com/external/github.com/KhronosGroup/SPIRV-Tools.git/+log/58e53ea82f25..b27d084b0112 git log 58e53ea82f25..b27d084b0112 --date=short --no-merges --format='%ad %ae %s' 2018-09-05 dj2@everburning.com Revert "BUILD.gn: Make a better interface with dependents. (#1875)" (#1876) 2018-09-05 corentin@wallez.net BUILD.gn: Make a better interface with dependents. (#1875) Created with: gclient setdep -r src/third_party/SPIRV-Tools/src@b27d084b0112 The AutoRoll server is located here: https://autoroll.skia.org/r/spirv-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=dsinclair@chromium.org Change-Id: I75d27e2add9990ccd3c6fc80fe40b28cf6297e8a Reviewed-on: https://chromium-review.googlesource.com/1208070Reviewed-by: spirv-chromium-autoroll <spirv-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: spirv-chromium-autoroll <spirv-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588983} 
- 
Xida Chen authoredThis CL adds temporary fix in TouchActionFilter to prevent crash. We'd likely need to merge this back to 70 for the next Android dev release. Bug: 869375, 880018 Change-Id: I087f39f64ba31dc4b5f8edfd2f6b0b0ae28da76d Reviewed-on: https://chromium-review.googlesource.com/1207094Reviewed-by: Dave Tapuska <dtapuska@chromium.org> Commit-Queue: Xida Chen <xidachen@chromium.org> Cr-Commit-Position: refs/heads/master@{#588982} 
- 
Alex Leung authoredBug=b:111935545 Change-Id: I991b5161d14aadae59576dbab231631364b47f8b Reviewed-on: https://chromium-review.googlesource.com/1187681 Commit-Queue: Alex Leung <alexleung@google.com> Reviewed-by: Bo <boliu@chromium.org> Reviewed-by: Zhenyao Mo <zmo@chromium.org> Cr-Commit-Position: refs/heads/master@{#588981} 
- 
Robert Phillips authoredThis change lets Chrome see the bug fix from the Skia CL: https://skia-review.googlesource.com/c/skia/+/12733 (Fix srcBounds computation in SkMatrixConvolutionImageFilter) which fixed some matrix image filter problems when tiling (i.e., the edges would become darker bc some input pixels needed for filtering were being discard) Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I9fca093a223104b85847b0b3a3c0a6a29871d5ba Reviewed-on: https://chromium-review.googlesource.com/1131554Reviewed-by: Florin Malita <fmalita@chromium.org> Reviewed-by: enne <enne@chromium.org> Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com> Cr-Commit-Position: refs/heads/master@{#588980} 
- 
James Wallace-Lee authoredFixes a crash from HitTestSync caused by writing to nullptr. Bug: 880801 Change-Id: Icc01027f6aa2fb60956bdc1ecafb96048680e895 Reviewed-on: https://chromium-review.googlesource.com/1208190 Commit-Queue: James Wallace-Lee <jamwalla@chromium.org> Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by: Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#588979} 
- 
depot-tools-chromium-autoroll authoredhttps://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/e6438547360b..7b9e6b164953 git log e6438547360b..7b9e6b164953 --date=short --no-merges --format='%ad %ae %s' 2018-09-05 recipe-roller@chromium.org Roll recipe dependencies (trivial). Created with: gclient setdep -r src/third_party/depot_tools@7b9e6b164953 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: Iafa02f9c25b5b42807d15c14e321d86968643cf1 Reviewed-on: https://chromium-review.googlesource.com/1208291Reviewed-by: depot-tools-chromium-autoroll <depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: depot-tools-chromium-autoroll <depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588978} 
- 
David Black authoredWhen launching Assistant via the stylus we should use the correct corner radius. Bug: b:114055376 Change-Id: I6ecc2ceb757175b5d92feae9f816f45e9ef8ba06 Reviewed-on: https://chromium-review.googlesource.com/1207654Reviewed-by: Xiaohui Chen <xiaohuic@chromium.org> Commit-Queue: David Black <dmblack@google.com> Cr-Commit-Position: refs/heads/master@{#588977} 
- 
Tommy C. Li authoredThis CL removes the Java implementation of Query in Omnibox, and makes Chrome for Android use the native C++ implementation. This native C++ implementation will be shared with Desktop. Bug: 874592 Change-Id: Idfe296090c43d5d3aefe4ce166a4f8859d5699f1 Reviewed-on: https://chromium-review.googlesource.com/1204413Reviewed-by: Ted Choc <tedchoc@chromium.org> Commit-Queue: Tommy Li <tommycli@chromium.org> Cr-Commit-Position: refs/heads/master@{#588976} 
- 
Jordy Greenblatt authoredThe placeholders were complete dummy links before this CL. Although the info page for the Better Together (a.k.a. MultiDevice) suite is not yet fully build, we are filling it in the like we plan to use for eve in the meantime. Bug: 853321 Change-Id: I9bcfc4693455b3d7083cc6f3bb4ff4474c787bfb Reviewed-on: https://chromium-review.googlesource.com/1208350Reviewed-by: Jeremy Klein <jlklein@chromium.org> Reviewed-by: Tommy Li <tommycli@chromium.org> Commit-Queue: Jordy Greenblatt <jordynass@chromium.org> Cr-Commit-Position: refs/heads/master@{#588975} 
- 
Alexandr Ilin authoredThis CL removes the deprecated chrome_browser_net::Predictor class. This code isn't executed since M68 and was kept as a backup for the LoadingPredictor experiment. Bug: 875238 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I50e1fc48739bc73e23f396cfd60e61532812e16c Reviewed-on: https://chromium-review.googlesource.com/1179884Reviewed-by: Charlie Harrison <csharrison@chromium.org> Reviewed-by: Gabriel Charette <gab@chromium.org> Reviewed-by: Matt Menke <mmenke@chromium.org> Reviewed-by: Avi Drissman <avi@chromium.org> Commit-Queue: Alexandr Ilin <alexilin@chromium.org> Cr-Commit-Position: refs/heads/master@{#588974} 
- 
Jordy Greenblatt authoredThe mocks now require that the Settings UI page when there is there is no response from the server has a disabled "Verify" button instead of the old active "Retry" button. Here are screenshots for this CL deployed: Waiting for verification: http://screen/E19zdKcijRN Waiting for server: http://screen/SSkhb7tzDkb Bug: 870127 Change-Id: If529edc1b6756de4fa6ecc5f5c8d0346e551a926 Reviewed-on: https://chromium-review.googlesource.com/1205596Reviewed-by: Jeremy Klein <jlklein@chromium.org> Reviewed-by: Hector Carmona <hcarmona@chromium.org> Commit-Queue: Jordy Greenblatt <jordynass@chromium.org> Cr-Commit-Position: refs/heads/master@{#588973} 
- 
pdfium-chromium-autoroll authoredhttps://pdfium.googlesource.com/pdfium.git/+log/424621e3129f..cc5f350ab9c8 git log 424621e3129f..cc5f350ab9c8 --date=short --no-merges --format='%ad %ae %s' 2018-09-05 rharrison@chromium.org Update libpng from 1.6.22 -> 1.6.34 Created with: gclient setdep -r src/third_party/pdfium@cc5f350ab9c8 The AutoRoll server is located here: https://autoroll.skia.org/r/pdfium-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=dsinclair@chromium.org Change-Id: I301ac78d336512a0c519a62cb641d4aede07218f Reviewed-on: https://chromium-review.googlesource.com/1208072Reviewed-by: pdfium-chromium-autoroll <pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: pdfium-chromium-autoroll <pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588972} 
- 
skia-chromium-autoroll authoredhttps://skia.googlesource.com/skia.git/+log/74b1c01cdd1d..29a4a684af25 git log 74b1c01cdd1d..29a4a684af25 --date=short --no-merges --format='%ad %ae %s' 2018-09-05 caryclark@skia.org makeSurface defaults to raster 2018-09-05 skcms-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll skia/third_party/skcms 80e0493eab5f..8a251fa55434 (1 commits) 2018-09-05 angle-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll third_party/externals/angle2 cc0466301999..750e508722a9 (1 commits) 2018-09-05 recipe-roller@chromium.org Roll recipe dependencies (trivial). 2018-09-05 brianosman@google.com Add error handling logic to viewer's GLX context creation 2018-09-05 reed@google.com Deliberately call typefaceproc only once per face in pictures 2018-09-05 brianosman@google.com Replace SkColor with SkColor4f in layer draw looper 2018-09-05 robertphillips@google.com Begin centralizing opList DAG 2018-09-05 brianosman@google.com Enforce range in SkPaint::setAlpha 2018-09-05 mtklein@google.com clean up S16CPU 2018-09-05 caryclark@skia.org add color4f to docs 2018-09-05 stephana@google.com Refresh gcloud asset to include BigTable emulator 2018-09-05 halcanary@google.com SkPDF: use more vector<>, more sk_sp<>, cleanup. 2018-09-05 bungeman@google.com Make Slide::getDimensions pure virtual. 2018-09-05 mtklein@google.com more skcolorspace cleanup 2018-09-05 brianosman@google.com Reland "Switch SkPaint's color to SkColor4f" 2018-09-05 brianosman@google.com Fix typo in viewer docs Created with: gclient setdep -r src/third_party/skia@29a4a684af25 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=master.tryserver.blink:linux_trusty_blink_rel;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=jvanverth@chromium.org Change-Id: Id31024f6e8ea648890f62562c1365630ad68189a Reviewed-on: https://chromium-review.googlesource.com/1207160Reviewed-by: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#588971} 
- 
Oksana Zhuravlova authoredThis change implements the controller management logic in DeviceMotionEventPump and removes the dependency on PlatformEventDispatcher. Bug: 873761 Change-Id: I520987c38877f0adfc4cbbce75bff2a36e5b47fe Reviewed-on: https://chromium-review.googlesource.com/1187517Reviewed-by: Tim Volodine <timvolodine@chromium.org> Reviewed-by: Reilly Grant <reillyg@chromium.org> Commit-Queue: Oksana Zhuravlova <oksamyt@chromium.org> Cr-Commit-Position: refs/heads/master@{#588970} 
- 
David Black authoredThe layer to which our web contents is drawn is not masked by the layer which applies corner clipping logic in Assistant UI. To fix this, I've added a distinct clipping layer mask that enforces our desired corner radius. See bug for before/after. Bug: b:113903157 Change-Id: If19ff4d6836cedf8b8ec6d0e9fef5616d5392b1d Reviewed-on: https://chromium-review.googlesource.com/1205195 Commit-Queue: David Black <dmblack@google.com> Reviewed-by: Xiaohui Chen <xiaohuic@chromium.org> Cr-Commit-Position: refs/heads/master@{#588969} 
- 
Chromium WPT Sync authoredUsing wpt-import in Chromium bb4cfa21. With Chromium commits locally applied on WPT: b691cab2 "Implement script and style attr/elem CSP directives" bde179ef "Revert "Implement script and style attr/elem CSP directives"" 77fb9999 "Reland "Implement script and style attr/elem CSP directives"" 51b234e2 "Set longer timeout to all tests in wpt/editing/run/" Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/24123 Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md NOAUTOREVERT=true TBR=kyleju No-Export: true Change-Id: I7dbea3ca564ef9fd0aa925c5df0b5dc51570b2bc Reviewed-on: https://chromium-review.googlesource.com/1207214 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#588968} 
- 
Misha Efimov authoredThis is a reland of 4327cf6c Original change's description: > [Cronet] Provide bidirectional stream support from native CronetEngine. > > Bug: 874542 > Change-Id: I8414e75049ee219f1c7491caf91f6282c42f23dd > Cq-Include-Trybots: luci.chromium.try:ios-simulator-cronet;master.tryserver.chromium.android:android_cronet_tester > Reviewed-on: https://chromium-review.googlesource.com/1178666 > Commit-Queue: Misha Efimov <mef@chromium.org> > Reviewed-by: Paul Jensen <pauljensen@chromium.org> > Cr-Commit-Position: refs/heads/master@{#588541} Bug: 874542 Change-Id: I1380e751fa00fae546c563d72da829b089458fe5 Cq-Include-Trybots: luci.chromium.try:ios-simulator-cronet;master.tryserver.chromium.android:android_cronet_tester Reviewed-on: https://chromium-review.googlesource.com/1207613Reviewed-by: Paul Jensen <pauljensen@chromium.org> Commit-Queue: Paul Jensen <pauljensen@chromium.org> Cr-Commit-Position: refs/heads/master@{#588967} 
- 
nednguyen authoredUpdate MILO entry of linux-builder-perf and remove the legacy 'Linux Builder Perf' config in mb_config.pyl Bug: 828467 Change-Id: I93df365ccf16e9668fd7fd07b79bbff8646311c9 Reviewed-on: https://chromium-review.googlesource.com/1206930Reviewed-by: John Budorick <jbudorick@chromium.org> Commit-Queue: Ned Nguyen <nednguyen@google.com> Cr-Commit-Position: refs/heads/master@{#588966} 
 
-