- 31 Oct, 2017 40 commits
-
-
Yuwei Huang authored
There are duplicated lines of _autocorrectionType but the second one is supposed to be _keyboardAppearance. UIKeyboardAppearanceDefault is the default value so we weren't seeing bugs before. Change-Id: I3c91a3496e62f778259c13fd6132ffbc28633ebd Reviewed-on: https://chromium-review.googlesource.com/744979Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Commit-Queue: Yuwei Huang <yuweih@chromium.org> Cr-Commit-Position: refs/heads/master@{#512889}
-
Yuke Liao authored
This reverts commit 844a031c. Reason for revert: This CL causes failures when generating Xcode project on iOS platform, please see comments inline. Original change's description: > [GN] Remove a duplication of a source type check > > There was a duplication of the source type checking. It may lead > errors when a type set will be changed for a language. > > R=dpranke@chromium.org > > Bug: None > Change-Id: Ieab8885899446e625cfe20c1650418a085b937ee > Reviewed-on: https://chromium-review.googlesource.com/702414 > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > Commit-Queue: Dirk Pranke <dpranke@chromium.org> > Cr-Commit-Position: refs/heads/master@{#506763} TBR=dpranke@chromium.org,vladbelov@yandex-team.ru # Not skipping CQ checks because original CL landed > 1 day ago. Bug: None Change-Id: I5dd0a68f9dd9ac1edd6b94e248bdf5959f83b3ab Reviewed-on: https://chromium-review.googlesource.com/747087Reviewed-by:
Yuke Liao <liaoyuke@chromium.org> Commit-Queue: Yuke Liao <liaoyuke@chromium.org> Cr-Commit-Position: refs/heads/master@{#512888}
-
Mike Klein authored
Should be a handful of trivial layout test changes. By adding and using the srcover_bgra_8888, one of the cc unit test golden images needs to change just a little bit (literally, one bit of one pixel as far as I can tell). This new fused stage does the srcover blend math in [0,255] bias instead of [0,1], so the rounding can change ever so slightly. Change-Id: I5e2d526496b030d06e5820dd9f3dd56a1fc571f6 Reviewed-on: https://chromium-review.googlesource.com/737859Reviewed-by:
danakj <danakj@chromium.org> Reviewed-by:
Florin Malita <fmalita@chromium.org> Commit-Queue: Mike Klein <mtklein@chromium.org> Cr-Commit-Position: refs/heads/master@{#512887}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/61050011..540ab10e 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: I0f337fbe63b7f6435c0965c1fad63e3851122edd Reviewed-on: https://chromium-review.googlesource.com/746376Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#512886}
-
Zoe Clifford authored
Element.BoundsInViewport was applying a viewport transformation that layout_object->AbsoluteBoundingBoxRect was not. This lead to weird inconsistencies in the LayoutTreeNode boundingBox output, such as text in a div with a boundingBox that was completely outside the div's boundingBox. This fix just skips calling BoundsInViewport and instead goes down the AbsoluteBoundingBoxRect path for every node. Bug: Change-Id: I60f7c166658530ee6b57489c1c81fab21ea038fb Reviewed-on: https://chromium-review.googlesource.com/736713 Commit-Queue: Zoe Clifford <zoeclifford@chromium.org> Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Reviewed-by:
Eric Seckler <eseckler@chromium.org> Cr-Commit-Position: refs/heads/master@{#512885}
-
Becca Hughes authored
Add a "use-default-poster" CSS class and add it if the video element does not have a video frame or poster to display. As per the spec then hide the controls apart from the play button and display a gradient background. BUG=761308 Change-Id: I579a1be27ecdb375e770b2fbc841593f7ce2abc3 Reviewed-on: https://chromium-review.googlesource.com/733092 Commit-Queue: Becca Hughes <beccahughes@chromium.org> Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Cr-Commit-Position: refs/heads/master@{#512884}
-
Wenzhao Zang authored
After applying a default delay to PendingWallpaper, some tests failed (crbug.com/779504) or have memory leak [1]. These tests indirectly called SetUserWallpaper, but they do not care/know about this, so they do not actively wait until wallpaper loading is done, but start the destruction directly. This used to be okay when SetUserWallpaper had zero delay. But when it has the default delay, the timer is still running when the destruction starts, and the timer holds a reference to the shared pointer of PendingWallpaper, which results in memory leak. What's worse, if the WallpaperManager already destructs itself, PendingWallpaper::ProcessRequest does not know it, and it crashes. After changing the shared pointer to a weak pointer, WallpaperManager will be able to completely manage the lifetime of PendingWallpaper. [1] https://luci-milo.appspot.com/buildbot/chromium.memory/Linux%20Chromium%20OS%20ASan%20LSan%20Tests%20(1)/24405 Below are the description of the original CL: 1) All the PendingWallpaper requests are now subject to a delay calculated from average loading time. However, in most cases the delay is still zero, and this change only affects corner cases that multiple requests coming together, which may result in wallpaper being stuck. 2) Add the account_id update in PendingWallpaper. Did not modify the functionality of PendingWallpaper, except for some renaming. TBR=oshima@chromium.org Bug: 779504, 778451 Change-Id: Iae943f88bbe046849c3afab75f35a253934fe75b Reviewed-on: https://chromium-review.googlesource.com/745022Reviewed-by:
Wenzhao (Colin) Zang <wzang@chromium.org> Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#512883}
-
Robert Liao authored
Previously, this ran in the Task Scheduler shared worker pool and initialized an STA on its own, which blocks initializing the shared worker pool as an MTA. This change moves the work to the shared COM STA task runner as CLSID_WSCProductList expects to be run in an STA. CLSID_WbemLocator is fine with an STA or MTA. BUG=706479 Change-Id: I834b0fbcda47ea0168f0ce48c5ab3191adbf7f5e Reviewed-on: https://chromium-review.googlesource.com/745317 Commit-Queue: Robert Liao <robliao@chromium.org> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Cr-Commit-Position: refs/heads/master@{#512882}
-
Dominic Mazzoni authored
Bug: 778905 Change-Id: I45125eccc1a68f9f80d485dd32762258bd9466e1 Reviewed-on: https://chromium-review.googlesource.com/746144Reviewed-by:
Aaron Leventhal <aleventhal@chromium.org> Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#512881}
-
Max Moroz authored
TBR=metzman@chromium.org Bug: Change-Id: Ibbcf61f59f6cd854344c37c6a968817b5ff2c834 Reviewed-on: https://chromium-review.googlesource.com/746990Reviewed-by:
Max Moroz <mmoroz@chromium.org> Commit-Queue: Max Moroz <mmoroz@chromium.org> Cr-Commit-Position: refs/heads/master@{#512880}
-
Scott Graham authored
Bug: 779668 Change-Id: If23ef86c79f73581b3330f8fa5d020212f74c518 Reviewed-on: https://chromium-review.googlesource.com/747201 Commit-Queue: Scott Graham <scottmg@chromium.org> Commit-Queue: Wez <wez@chromium.org> Reviewed-by:
Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#512879}
-
Patrick Noland authored
Currently the default, on-disk impl is used. This CL allows and uses overriding the ModelTypeStore factory via pss init_params in order to specify the use of the InMemoryStore for tests. BUG=776762 R=skym@chromium.org Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Ie1bf97f93f5f8b4094f7abb157c84514b724a911 Reviewed-on: https://chromium-review.googlesource.com/731677Reviewed-by:
Sean Kau <skau@chromium.org> Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Reviewed-by:
Sky Malice <skym@chromium.org> Commit-Queue: Patrick Noland <pnoland@google.com> Cr-Commit-Position: refs/heads/master@{#512878}
-
Yash Malik authored
This CL enters Chrome into VR mode upon receiving a VR intent. It facilitates a smooth transition into VR by having VR intents go through VrMainActivity which has the correct manifest flags to keep the system in VR mode and disabling the window preview feature to hide the system UI on startup. Note that currently, VrMainActivity doesn't have any intent-filters and can only be explicitly targeted. VrMainActivity continues to open a CCT for intents from the Daydream app and opens a CTA otherwise. Follow-up work: - Fix issues with devices that support multiple screen densities Note that this feature is guarded behind the "VrLaunchIntent" runtime flag. Bug: 752200 Change-Id: I7656e0df53c0095ca3a958ede281e2ef7157cd95 Reviewed-on: https://chromium-review.googlesource.com/722456Reviewed-by:
Ted Choc <tedchoc@chromium.org> Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Commit-Queue: Yash Malik <ymalik@chromium.org> Cr-Commit-Position: refs/heads/master@{#512877}
-
Qiang Xu authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/61a24395b7c1..370839fe525e $ git log 61a24395b..370839fe5 --date=short --no-merges --format='%ad %ae %s' 2017-10-19 dgarrett config_lib: Add 'debug' build config value. 2017-10-27 yueherngl chromeos_config.py: excluding autotest-all from firmware 2017-10-26 yunlian Disable USE=thinlto for profile collecting boards. 2017-10-27 akeshet chromeos_config: mark wizpig, reef, reef-uni experimental 2017-10-27 akeshet chromeos_config: add a disjointness check to paladin board sets 2017-10-05 phobbs merge_logs: Add filename trimming 2017-10-05 phobbs merge_logs: Make more robust to missing logs 2017-10-27 akeshet summarize_build_stats: use nicer pcon queries 2017-10-24 cywang Add support for sending payloads in parallel for reimaging 2017-10-19 pgeorgi portage_util: uprev when subdirs_to_rev is set and -9999 ebuild changed 2017-10-26 laszio afdo: workaround the use flag dependency problem 2017-10-26 armax lassen: fix chromite to exclude simple chrome setup. 2017-10-25 perley image_test: Add homedir exception for dhcp user 2017-10-25 rahulchaudhry cros_setup_toolchains: enable aarch64-cros-linux-gnu/go binary packages. 2017-10-25 vapier image_test: fix error handling with new bad users 2017-10-25 rahulchaudhry cros_setup_toolchains: enable Go cross compiler for aarch64-cros-linux-gnu toolchain. 2017-10-25 laszio kernel_afdo: cast chrome_version to int 2017-10-25 chrome-bot Update config settings by config-updater. 2017-10-24 jkop Replace buildbucket assert with short-circuit. 2017-10-19 dgarrett cbuildbot: Adjust command line parsing for a single build_config. 2017-10-24 vapier image_test: allow multiple shells for root/chronos users 2017-10-18 pprabhu cidb: Fix integration test case failure mode. 2017-10-18 pprabhu 'cros moblabvm create' gains --source-vm-images flag. 2017-10-23 vapier auto_updater: change /var/run paths to /run 2017-10-23 dhaddock [chromite] Error out if the devserver is dead when we try to get hostlog. 2017-10-23 benchan Add 'cros-disks' user to 'avfs' group in usergroup_baseline.py 2017-10-24 chrome-bot Update config settings by config-updater. 2017-10-24 dhaddock Revert "remote_access: enforce shell=True on shell commands" 2017-10-24 dhaddock Revert "deploy_chrome: convert umount logic away from shell=True" 2017-10-19 derat chromite: Improve TastVMTestStage error handling. 2017-09-27 deanliao [cros bisect] Continue bisect when autotest returns error. 2017-10-23 ayatane cbuildbot: Move provision suite from auron to auron_paine 2017-09-22 nxia clactions: include buildbucket_id in GetCLPreCQProgress return value. 2017-10-11 nxia Insert build_requests for retried builds. 2017-09-26 nxia Insert scheduled CQ slaves into buildRequestTable. 2017-10-20 laszio autofdo: try new profiles on falco and peppy when building Chrome 2017-10-23 laszio afdo: switch to text format 2017-10-13 nxia cidb: Fix buildRequestTable build_request_reason typo. 2017-10-17 vapier cros_setup_toolchains: switch to virtual post cross packages fully 2017-10-17 jorgelo Add user/group test to ImageTest. Created with: roll-dep src/third_party/chromite R=stevenjb@chromium.org Bug=762650 Change-Id: Iec36099169b6f33e8a3b13115b174e64eeee894c Reviewed-on: https://chromium-review.googlesource.com/746044Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Qiang(Joe) Xu <warx@chromium.org> Cr-Commit-Position: refs/heads/master@{#512876}
-
Shivani Sharma authored
Bug: 780029 Cq-Include-Trybots: master.tryserver.chromium.android:android_cronet_tester;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I4130623a8e72803385189f8ce7e2d50bb998ad48 Reviewed-on: https://chromium-review.googlesource.com/746536Reviewed-by:
Josh Karlin <jkarlin@chromium.org> Commit-Queue: Shivani Sharma <shivanisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#512875}
-
Kurt Horimoto authored
When safe area inset usage is enabled, the constraint system bypasses |-setFrame:| when updating the view upon rotation, so the omnibox's and buttons' opacities were not updated properly. This CL changes the delegate protocol to wait for layout events rather than frame setting. Bug: 778750 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I0cbd3bf66f0c53a156da269ed510fcad71ed87ec Reviewed-on: https://chromium-review.googlesource.com/745723 Commit-Queue: Kurt Horimoto <kkhorimoto@chromium.org> Reviewed-by:
Kurt Horimoto <kkhorimoto@chromium.org> Reviewed-by:
Sergio Collazos <sczs@chromium.org> Cr-Commit-Position: refs/heads/master@{#512874}
-
Fernando Serboncini authored
Bug: 722511 Change-Id: I4a8f5eb5c5a4bae215690979f737bbdfb446a449 Reviewed-on: https://chromium-review.googlesource.com/726341Reviewed-by:
Justin Novosad <junov@chromium.org> Reviewed-by:
Kunihiko Sakamoto <ksakamoto@chromium.org> Commit-Queue: Fernando Serboncini <fserb@chromium.org> Cr-Commit-Position: refs/heads/master@{#512873}
-
Xianzhu Wang authored
Ensure the reflection mask image is loaded before ending the test. Will update TestExpectations later if the test will no longer be flaky. Bug: 777259 Change-Id: I2ed912f650c80a12ac51308799173a54ffe35314 Reviewed-on: https://chromium-review.googlesource.com/744288 Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by:
Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/master@{#512872}
-
Fredrik Söderquist authored
SVGLength::SetValueAsString was allowing "" to "reset" the value without signaling an error. Because of how the handling of removeAttribute works we can't shut down this entirely, but still need to handle the null string resulting from that. Convert svg/custom/invalid-length-units.html to testharness.js. (This test had one item for "" and " ".) Bug: 779454 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I055b77b07d833a252b325df8fc1a908271c86005 Reviewed-on: https://chromium-review.googlesource.com/746707Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#512871}
-
Hajime Hoshi authored
This is one step of all replacings at https://chromium-review.googlesource.com/c/chromium/src/+/743663 Bug: 777775 Change-Id: Ifdd45ab27dfbb2fdea8e8ff0dd668e083c1f8244 Reviewed-on: https://chromium-review.googlesource.com/746603Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Hajime Hoshi <hajimehoshi@chromium.org> Cr-Commit-Position: refs/heads/master@{#512870}
-
Steven Bennetts authored
SIM unlock is now integrated with the internet details dialog. Bug: 777778 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I1509aea8356b86c8b887f398f58447c67964efcb For misc. code removal owners: TBR=jamescook@chromium.org,sky@chromium.org Change-Id: I1509aea8356b86c8b887f398f58447c67964efcb Reviewed-on: https://chromium-review.googlesource.com/738854 Commit-Queue: Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Ben Chan <benchan@chromium.org> Cr-Commit-Position: refs/heads/master@{#512869}
-
Jay Civelli authored
Relanding "Servicifying ShellHandlerWin.". It was breaking the Windows build due to a left over include for a file that does not exist anymore. This reverts commit c52f5bd4. BUG=777032 TBR=sky@chromium.org,pmonette@chromium.org,tsepez@chromium.org Change-Id: I0f495649aed6091ff287852f813cc10917c4e7f8 Reviewed-on: https://chromium-review.googlesource.com/745984Reviewed-by:
Jay Civelli <jcivelli@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Commit-Queue: Jay Civelli <jcivelli@chromium.org> Cr-Commit-Position: refs/heads/master@{#512868}
-
Weidong Guo authored
This CL is a prerequisite CL for supporting mirroring across 3+ displays. Changes: 1. Clean up old code of mirror mode in display manager and make software and hardware mirroring more intuitive. 2. Fix a bug that misuses mirroring destination display as source in display_info_provider_chromeos.cc Design doc: go/multi-display-mirroring BUG=607844 Change-Id: I38a065e2693c1094d9b460dd99ad0b2daabd0215 Reviewed-on: https://chromium-review.googlesource.com/734799Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Commit-Queue: Weidong Guo <weidongg@chromium.org> Cr-Commit-Position: refs/heads/master@{#512867}
-
Peter Beverloo authored
This matches Chromium's behaviour, part of which (unfortunately) is defined in the //content layer in the form of DCHECKs. BUG= Change-Id: I4ea29bec34eb3348aa2640db55b1cef88443490f Reviewed-on: https://chromium-review.googlesource.com/747222Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Commit-Queue: Peter Beverloo <peter@chromium.org> Cr-Commit-Position: refs/heads/master@{#512866}
-
Christopher Grant authored
This CL does not cover generation of suggestions, but rather rendering of suggestions that exist in the UI model. Suggestions are also not yet properly rendered WRT to alignment, sizing, etc. Proper formatting and layout can be added after supporting capabilities are added to the UI. BUG=777542 Change-Id: Ib10b7a1bf05be629322a3db81650324102e2fbfa Reviewed-on: https://chromium-review.googlesource.com/734222Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Reviewed-by:
Ian Vollick <vollick@chromium.org> Commit-Queue: Christopher Grant <cjgrant@chromium.org> Cr-Commit-Position: refs/heads/master@{#512865}
-
Miriam Gershenson authored
When DnsUDPAttempt gets a mismatched response, it returns ERR_DNS_MALFORMED_RESPONSE but keeps the attempt running while another one starts. DnsTransaction doesn't handle this case very well. This CL handles the two crashes that the fuzzer has found and adds a regression test that catches both of them. There's a bug filed (https://crbug.com/779589) for a more complete fix. Bug: 768150, 774846 Change-Id: I0630d73a2e0d1cc179e7fe2139c030d58d25d90f Reviewed-on: https://chromium-review.googlesource.com/743810Reviewed-by:
Julia Tuttle <juliatuttle@chromium.org> Commit-Queue: Miriam Gershenson <mgersh@chromium.org> Cr-Commit-Position: refs/heads/master@{#512864}
-
Zhen Wang authored
Memory signal is currently unreliable. We should not pause or resume background tab opening based on the memory pressure signal. Bug: 762775,730098 Change-Id: Ic976493bb7af94c451d54e8c8f655dbdd6b2421e Reviewed-on: https://chromium-review.googlesource.com/736869Reviewed-by:
Chris Hamilton <chrisha@chromium.org> Commit-Queue: Zhen Wang <zhenw@chromium.org> Cr-Commit-Position: refs/heads/master@{#512863}
-
David Reveman authored
This adds a property to cr_camera that allows video mode to be disabled by hiding camera mode button. It is also making video mode disabled by default. Bug: 769140 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I232e95dae75502b4242a807dcfe4e6d668120312 Reviewed-on: https://chromium-review.googlesource.com/745121Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: David Reveman <reveman@chromium.org> Cr-Commit-Position: refs/heads/master@{#512862}
-
angle-deps-roller@chromium.org authored
https://chromium.googlesource.com/angle/angle.git/+log/722bfb51d591..1b605ee34590 $ git log 722bfb51d..1b605ee34 --date=short --no-merges --format='%ad %ae %s' 2017-10-30 jdashg Use "python2" instead of undifferentiated "python". 2017-10-31 geofflang Skip WebGLCompatibilityTest.InvalidTextureFormat on Ozone. 2017-10-19 yizhou.jiang Clean up passed end2end tests on Intel Windows platform 2017-10-31 oetuaho Fix MSVS 2015 compilation of tests Created with: roll-dep src/third_party/angle BUG=779346 The AutoRoll server is located here: https://angle-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.angle:android_angle_rel_ng,android_angle_deqp_rel_ng,linux_angle_rel_ng,linux_angle_dbg_ng,linux_angle_deqp_rel_ng,linux_angle_ozone_rel_ng,mac_angle_rel_ng,mac_angle_dbg_ng,win_angle_rel_ng,win_angle_dbg_ng,win_angle_x64_rel_ng,win_angle_x64_dbg_ng,win_angle_deqp_rel_ng,win_angle_x64_deqp_rel_ng;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 TBR=cwallez@chromium.org Change-Id: I60deff1a036ee034b392a84b8e49f4f8c8cc3b7a Reviewed-on: https://chromium-review.googlesource.com/747068Reviewed-by:
angle-deps-roller . <angle-deps-roller@chromium.org> Commit-Queue: angle-deps-roller . <angle-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#512861}
-
Patrik Höglund authored
R=guidou Bug: 767857 Change-Id: I1a3aa68c3a6996c17bc9d0b96595736e4fb453ab Reviewed-on: https://chromium-review.googlesource.com/741598 Commit-Queue: Patrik Höglund <phoglund@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/master@{#512860}
-
sunxd authored
In extreme cases, PictureLayerImpl::GetIdealContentsScale may return big float numbers that result in overflow of scaled rect when AppendQuads. We should use ideal_contents_scale_ which ceils the ideal contents scale with maximum allowed scale. Bug: 779334 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: Iac6cca7e20749575fa435e3a3ab38fa29ed847f6 Reviewed-on: https://chromium-review.googlesource.com/744402 Commit-Queue: Xianda Sun <sunxd@chromium.org> Reviewed-by:
enne <enne@chromium.org> Cr-Commit-Position: refs/heads/master@{#512859}
-
Victor Costan authored
Bug: Change-Id: Id5b89fdffed3e0256201a225aba4e68f058d1141 Reviewed-on: https://chromium-review.googlesource.com/745540Reviewed-by:
Joshua Bell <jsbell@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#512858}
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia.git/+log/a8d415c24f22..90dabec62f9b $ git log a8d415c24..90dabec62 --date=short --no-merges --format='%ad %ae %s' 2017-10-31 angle-deps-roller Roll skia/third_party/externals/angle2/ 6bb4f501f..d922775b6 (1 commit) 2017-10-30 brianosman Add support for transfer functions to GrColorSpaceXform 2017-10-31 robertphillips Add a GM to test out odd matrix draws 2017-10-31 liyuqian Reuse more upload_to_android and allow removing flag on Android 2017-10-31 angle-deps-roller Roll skia/third_party/externals/angle2/ 722bfb51d..6bb4f501f (1 commit) 2017-10-31 kjlubick Update Pixel Cs to (actual) latest version 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;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=stani@chromium.org Change-Id: Ifa74995cc7a885fc1c1f22b1329005991834d5bb Reviewed-on: https://chromium-review.googlesource.com/747021Reviewed-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@{#512857}
-
Joe Mason authored
Also format test names legibly. Bug: 778000 Change-Id: Ia38bf67f2913caa91631f2c131b6f50b9b60b2ba Reviewed-on: https://chromium-review.googlesource.com/736067 Commit-Queue: Joe Mason <joenotcharles@chromium.org> Reviewed-by:
Chris Sharp <csharp@chromium.org> Cr-Commit-Position: refs/heads/master@{#512856}
-
Olga Sharonova authored
Bug: 696700 Change-Id: Id318bbb47c1392b175f5da2bed042b74cca3c111 Reviewed-on: https://chromium-review.googlesource.com/746642Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Commit-Queue: Olga Sharonova <olka@chromium.org> Cr-Commit-Position: refs/heads/master@{#512855}
-
Andrew Grieve authored
A) Removes gzip header B) Fixes sort key for string literals Bug: 779895 Change-Id: Ia1c9872c42c5564134215b0973d5d9e27dcf966d Reviewed-on: https://chromium-review.googlesource.com/746377Reviewed-by:
Samuel Huang <huangs@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Commit-Queue: agrieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#512854}
-
Bernhard Bauer authored
The call to clear() was accidentally removed in https://crrev.com/456456, but the bug didn't surface until recently when the remote plugin list was updated before the baked-in one. Other cleanup: * Remove unused FindPlugin() method * Use built-in static instead of base::Singleton * Use SequenceChecker instead of BrowserThread thread checking * Use new base::Value APIs and moar std::unique_ptr TBR: finnur@chromium.org Bug: 778856 Change-Id: I050dd2292882ab047b54f63983cdfd2f7da3aded Reviewed-on: https://chromium-review.googlesource.com/746841 Commit-Queue: Bernhard Bauer <bauerb@chromium.org> Reviewed-by:
Will Harris <wfh@chromium.org> Cr-Commit-Position: refs/heads/master@{#512853}
-
John Z Wu authored
Bug: Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Ia5890c49825428177dbdc4c2a9429616bb92d747 Reviewed-on: https://chromium-review.googlesource.com/744521Reviewed-by:
Eugene But <eugenebut@chromium.org> Reviewed-by:
Mike Dougherty <michaeldo@chromium.org> Reviewed-by:
Hiroshi Ichikawa <ichikawa@chromium.org> Commit-Queue: John Wu <jzw@chromium.org> Cr-Commit-Position: refs/heads/master@{#512852}
-
Scott Chen authored
Currently when the view port is larger, as per the design, each user card scales to 0.8 of original size. However, this scaling down includes the name text, which makes it a bit harder to read. This CL adds a font-size to enlarge the text when the card is scaled down, and back to original font-size when the card is scaled back to normal size. Bug: 666703 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I83bcc8f6b0a19442adb628ccadf0aea354cd08e4 Reviewed-on: https://chromium-review.googlesource.com/741238Reviewed-by:
Moe Ahmadi <mahmadi@chromium.org> Commit-Queue: Scott Chen <scottchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#512851}
-
Hajime Hoshi authored
Checking the existence of execution context is not thread safe. Instead, let's check it on the handler sides (main thread). Bug: 696905 Change-Id: I68a05ef9e32837f74ef1772d66631bfd104c7d5e Reviewed-on: https://chromium-review.googlesource.com/746721Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Reviewed-by:
Raymond Toy <rtoy@chromium.org> Commit-Queue: Hajime Hoshi <hajimehoshi@chromium.org> Cr-Commit-Position: refs/heads/master@{#512850}
-