- 07 Feb, 2018 40 commits
-
-
Victor Costan authored
This is a reland of b05f99c3. Unlike the original, this CL does not enable SQLITE_OMIT_AUTOINIT, to avoid the crashes caused by the problem being addressed in https://crrev.com/c/894692 This CL shrinks the Linux binary by 26KB (139,005,496 to 138,979,176). Code savings aside, this makes sure we don't unintentionally start depending on these features. The following compile-time options are recommended in the SQLite documentation [1]: * SQLITE_LIKE_DOESNT_MATCH_BLOBS - The LIKE and GLOB operators don't work on BLOB columns. This access pattern would be a performance wrench, so it's nice to fail hard here. * SQLITE_OMIT_DEPRECATED - This removes support for deprecated SQLite APIs. Note that SQLite promises to maintain indefinite backwards compatbility for SQL queries (modulo features disabled via compile-time options), so this only applies to the SQLite API. We should never be using deprecated APIs. * SQLITE_OMIT_PROGRESS_CALLBACK - Remove sqlite3_progress_handler(). We don't use this feature, and the documentation says it comes with a small performance penalty. * SQLITE_OMIT_SHARED_CACHE - Using a shared cache sounds nice from a memory consumption standpoint, and we already do that for LevelDB. Unfortunately, Chromium's SQLite databases use a variety of page sizes, which makes cache sharing impossible. * SQLITE_USE_ALLOCA - Use alloca() instead of malloc() for allocating temporary spaces in functions. All of Chrome's platforms support this option, and it results in a slightly smaller binary and less heap churn. The following compile-time options disable features that happen not to be used. * SQLITE_OMIT_AUTORESET: We calls sqlite3_reset() correctly to reset prepared statements. * SQLITE_OMIT_GET_TABLE: We don't use sqlite3_{get,free}_table(). * SQLITE_OMIT_LOAD_EXTENSION: We don't use sqlite3_{enable_}load_extension(). Asides from the code savings, there's a tiny security benefit to knowing that extension loading code is definitely not reachable from WebSQL. * SQLITE_OMIT_TCL_VARIABLE: We don't use TCL variables. * SQLITE_OMIT_TRACE: We don't use sqlite3_{profile,trace}(). [1] https://www.sqlite.org/compile.html#recommended_compile_time_options Bug: 807093 Change-Id: Ic7510b32f96d5d3f98f8c5a9ba522478ad728ad0 Reviewed-on: https://chromium-review.googlesource.com/894708 Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Chris Mumford <cmumford@chromium.org> Cr-Commit-Position: refs/heads/master@{#534884}
-
Jun Choi authored
HID packet and message structure defined by the U2F spec is a strict subset of structure defined by the CTAP spec. Migrate all HID packet or HID message related code and tests to device/ctap. Bug: 807043 Change-Id: If4ff1fcbbd2a638ccf2c4eb6f5dc518f08054fe4 Reviewed-on: https://chromium-review.googlesource.com/892045 Commit-Queue: Jun Choi <hongjunchoi@chromium.org> Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Reviewed-by:
Kim Paulhamus <kpaulhamus@chromium.org> Cr-Commit-Position: refs/heads/master@{#534883}
-
https://chromium.googlesource.com/catapult.git/+log/874bc7c4eabb..1d86294f159a $ git log 874bc7c4e..1d86294f1 --date=short --no-merges --format='%ad %ae %s' 2018-02-06 eakuefner [Telemetry] Preserve shared diagnostics added in JavaScript Created with: roll-dep src/third_party/catapult The AutoRoll server is located here: https://catapult-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=sullivan@chromium.org Change-Id: Id25269d48c5d6c8afd2355e90dda9b5ed98dfbdf Reviewed-on: https://chromium-review.googlesource.com/905811 Commit-Queue: catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by:
catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#534882}
-
Zhenyao Mo authored
BUG=744658 TEST=bots R=piman@chromium.org,boliu@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 Change-Id: Icb4f88dbbdca34541d3921b57574a9d843326254 Reviewed-on: https://chromium-review.googlesource.com/905791Reviewed-by:
Bo <boliu@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Commit-Queue: Zhenyao Mo <zmo@chromium.org> Cr-Commit-Position: refs/heads/master@{#534881}
-
Matt Menke authored
HandleRequestCallbacks and MonitorRequestCallback are now explicitly RepeatingCallbacks instead of just base::Callbacks. Also update some consumers of those APIs in net/ to use BindRepeating, though there are still a great number outside of net/ that just use Bind. Bug: 714018 Change-Id: I473c7f3128b3398e97c2c587e5b70bf51cde83fa Reviewed-on: https://chromium-review.googlesource.com/900186Reviewed-by:
Bence Béky <bnc@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#534880}
-
Shenghua Zhang authored
In the case of migrating Chrome mac 10.9 bots to 10.13, make use of the trigger tool //testing/trigger_scripts/trigger_multiple_dimensions_unittest.py, to support buider chromium.mac bot 'Mac10.9 Tests' running tests on either 10.9 or 10.13 bots in a load-balancing way. This CL: 1) adds add_common_test_properties in generate_buildbot_json.py which adds the tigger script logic. 2) add 'alternate_swarming_dimensions' for 'Mac10.9 Tests' tester config in waterfalls.py 3) manually run generate_buildbot_json.py and generated the multiple swarming dimensions configs in chromium.mac.json Bug: 805475 Change-Id: I4aeb4b67d085c58e777c59e9685e39e3d5504598 Reviewed-on: https://chromium-review.googlesource.com/898534 Commit-Queue: Shenghua Zhang <shenghuazhang@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#534879}
-
Andrey Kosyakov authored
This moves the instrumentation for Network.{requestWillBeSent,responseReceived,loadingFailed} to browser and prevents renderer from reporting these. The dataReceived and loadingFinished events are still reported from the renderer. TBR=alexclarke Bug: 791838 Change-Id: I6f7ce1f0c243342ad15cb1bd6290c0f68a0da647 Reviewed-on: https://chromium-review.googlesource.com/861952Reviewed-by:Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#534878}
-
François Degros authored
Used RepeatingCallback instead of deprecated Callback. Change-Id: I36a1079c5a5c2c0341d85e1e7230ac9055347349 Reviewed-on: https://chromium-review.googlesource.com/894962 Commit-Queue: François Degros <fdegros@chromium.org> Reviewed-by:
Bernhard Bauer <bauerb@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#534877}
-
Ke He authored
Automated test missing was found when moving geolocation-config related codes. Add a service unittest against it. BUG=800633 Change-Id: I99332c942626f8acf2e8ced1387c259024c2a2c3 Reviewed-on: https://chromium-review.googlesource.com/885913Reviewed-by:
Dan Erat <derat@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Ke He <ke.he@intel.com> Cr-Commit-Position: refs/heads/master@{#534876}
-
CJ DiMeglio authored
This CL allows video surfaces to utilize rotation information provided in the metadata. Providing this information is important because it ensures that videos are played in the correct orientation. In order to accomplish this, we wait to enable submission of frames until after metadata has loaded. This CL also gets rid of the use of the |submitter_| variable in VideoFrameCompositor, only using it for ownership purposes, simplifying the code. Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I06eb182be69d326f97b9ae9613cd196db55621a8 Bug: 750313 Reviewed-on: https://chromium-review.googlesource.com/865462Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: CJ DiMeglio <lethalantidote@chromium.org> Cr-Commit-Position: refs/heads/master@{#534875}
-
https://chromium.googlesource.com/angle/angle.git/+log/bfeed4ddfcd6..57dd97aaaf09 $ git log bfeed4ddf..57dd97aaa --date=short --no-merges --format='%ad %ae %s' 2018-02-06 jmadill Vulkan: Add helper for allocating image memory. 2018-01-19 oetuaho Store symbol names as a ImmutableString 2017-12-22 talentediq Added Documentation for running dEQP tests 2018-02-06 jmadill Vulkan: Reorganize BUILD.gn files. 2018-02-05 lucferron Vulkan: Fix bug in reuse of vertex input bindings 2018-02-05 wez Replace a POSIX API call not supported by Fuchsia. Created with: roll-dep src/third_party/angle 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.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: Ibf92ddb541c01c2a5eb03ff9b38e1163cd7f0603 Reviewed-on: https://chromium-review.googlesource.com/905639 Commit-Queue: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by:
angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#534874}
-
Tetsui Ohkubo authored
MessagePopupCollection::GetBaseLine had an unused argument ToastContentsView* last_toast. It was just used as a boolean value. TEST=message_center_unittests BUG=none Change-Id: I044a057074fdcf2cd5227746e83c0f8ecfd01ee3 Reviewed-on: https://chromium-review.googlesource.com/895204Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Evan Stade <estade@chromium.org> Commit-Queue: Tetsui Ohkubo <tetsui@chromium.org> Cr-Commit-Position: refs/heads/master@{#534873}
-
Kent Tamura authored
This CL has no behavior changes. Bug: 808311 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: Ica27f0cdadfe3a8381eb2dd90bd1a781d5b04cd5 Reviewed-on: https://chromium-review.googlesource.com/905704Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#534872}
-
Matt Wolenetz authored
If a range B starts with the same timestamp as the end of the previous range A, these would normally merge due to being adjacent within the fudge room based on the end timestamp of range A (not the buffered end timestamp of A). This is sufficient for coalescing adjacent ranges in all cases except where fudge room has not been increased to account for an increased estimated buffer's duration. In complex overlap/abutting append scenarios, A and B previously would have remained outside of fudge room of each other and not have been coalesced, if A ended with an estimated duration buffer longer than the fudge room. This change patches CanAppendBuffersToEnd to recognize this specific scenario and allow A and B to coalesce. BUG=806181 TEST=CF case no longer repros locally, new SBSTest.MergeAllowedIfRangeEndTimeWithEstimatedDurationMatchesNextRangeStart Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: Ic749c2e4e0bb6cc1b69983efd16ef6e346410c9e Reviewed-on: https://chromium-review.googlesource.com/898604 Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Reviewed-by:
Chrome Cunningham <chcunningham@chromium.org> Cr-Commit-Position: refs/heads/master@{#534871}
-
Kent Tamura authored
The second argument was a bool representing craete_by_parser. This CL changes it to CreateElementFlags, which contains the same flag. This is a preparation to support <script is=>. This CL has no behavior changes. Bug: 808311 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I065b23a4797ba26b050e2113a4df7daf1cc385d6 Reviewed-on: https://chromium-review.googlesource.com/904225Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#534870}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/a462f872..017935cf 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: Ifc4c5a633e5a90428ec3294045f531fb88e42bb3 Reviewed-on: https://chromium-review.googlesource.com/905269Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#534869}
-
Theresa authored
BUG= Change-Id: Ic2e4a9abe542e2ebce04ce89de7f3e77cb5eda13 Reviewed-on: https://chromium-review.googlesource.com/904950Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#534868}
-
Sarah Hu authored
This is a basic flow of adding a new user in the views login screen. Changes including: 1. Add ShowGaiaSignin mojo call for the views login screen to request show gaia screen in chrome. 2. Create GaiaDialogDelegate to manage the behavior of the dialog which hosts the gaia content. 3. Updating LoginHostDisplay to support views login case: Act like an intermediate layer for communication between GaiaScreenHandler and GaiaDialogDelegate. Also owns the WizardController to support post login screens. 4. Add handler functions in GaiaScreenHandler to update the gaia screen size and visibility. Move HandleShowAddUser/OnShowAddUser from SigninScreenHandler to GaiaScreenHandler because its more relevant to gaia screen. 5. Update JS code to handle views login case. Bug: 792579 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I2802e857eb3c6c825e0a463010c856958badd2b7 Reviewed-on: https://chromium-review.googlesource.com/892042 Commit-Queue: Xiaoyin Hu <xiaoyinh@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Reviewed-by:
Jacob Dufault <jdufault@chromium.org> Reviewed-by:
Achuith Bhandarkar <achuith@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#534867}
-
Yutaka Hirano authored
This CL removes "NetDelayableH2AndQuicRequests" from fieldtrial_testing_config.json. The feature is disabled by default, and we are disabling it on perf bots now - otherwise it may prevent us from launching RendererSideResourceScheduler. Bug: 785770, 794073 Change-Id: Ib65fbc5989295537f649fb5211606196efc52416 Reviewed-on: https://chromium-review.googlesource.com/901145Reviewed-by:
Josh Karlin <jkarlin@chromium.org> Reviewed-by:
Jesse Doherty <jwd@chromium.org> Commit-Queue: Yutaka Hirano <yhirano@chromium.org> Cr-Commit-Position: refs/heads/master@{#534866}
-
Klaus Weidner authored
Use a completion fence for the previous frame to avoid overstuffing GVR's buffer queue and blocking on GVR frame Submit. This fixes the inconsistent timing in this mode that was due to event handling being delayed during the blocking wait. Based on initial testing this mode now seems to be generally more efficient than the baseline ClientWait mode, so setting it to default to get more data. This can be overridden via Finch parameter if needed. Bug: 760389 Change-Id: I8bdf84e7fa2659e26daa467d815dc9b862c99610 Reviewed-on: https://chromium-review.googlesource.com/905786Reviewed-by:
Ian Vollick <vollick@chromium.org> Commit-Queue: Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#534865}
-
Dmitry Gozman authored
Bug: none Change-Id: I0aa1ae599008124cafc6c84f967f924821ef3167 Reviewed-on: https://chromium-review.googlesource.com/905225 Commit-Queue: Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Cr-Commit-Position: refs/heads/master@{#534864}
-
Yuwei Huang authored
* Update the character limit. * Add the promotion text, which will be shown just below the app title on App Store. For example: https://drive.google.com/file/d/1dpHERWFhUkv7LSs-Mqxq7HmizDxMNiCV/view?usp=sharing Bug: 756208 Change-Id: Ic8d6b23d2c292772c9ad7b5d928d3cb000ed98b4 Reviewed-on: https://chromium-review.googlesource.com/905504 Commit-Queue: Yuwei Huang <yuweih@chromium.org> Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Cr-Commit-Position: refs/heads/master@{#534863}
-
Nico Weber authored
No behavior change. Actually turning on the warning is blocked on an issue in protobuf (see crbug.com/809157), so this will happen in a future CL. Bug: 177475 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: If4a2e661257a77298bacf589b7bdf02e0e54374d Reviewed-on: https://chromium-review.googlesource.com/902066Reviewed-by:
David Roger <droger@chromium.org> Reviewed-by:
Lambros Lambrou <lambroslambrou@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#534862}
-
Yuki Awano authored
- Enables new implementation of touch support for screen magnification by default. - Removes the old implementation of touch support for screen magnification. around with two fingers scroll without any flag. Pass ash_unittests:MagnificationControllerTest Bug: 670526 Test: Confirm that you can change zoom level with pinch gesture and pan Change-Id: Icf25edb2bceae28323075f857c3e74c2b4526dcc Reviewed-on: https://chromium-review.googlesource.com/903306Reviewed-by:James Cook <jamescook@chromium.org> Commit-Queue: Yuki Awano <yawano@chromium.org> Cr-Commit-Position: refs/heads/master@{#534861}
-
James Cook authored
--mash causes thousands of lines of UI code to behave differently, but in the best case there's no visual indication of what mode you're in. Add an indicator to the status area that shows if you're running --mash. This could be generalized later to a "flag warning", like we use in browser windows when running --no-sandbox. Bug: 808158 Test: ash_unittests Change-Id: I477158085bed9665c2fc9e7d2356c1f346083919 Reviewed-on: https://chromium-review.googlesource.com/905631 Commit-Queue: James Cook <jamescook@chromium.org> Reviewed-by:
Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#534860}
-
Aga Wronska authored
Add new metrics for 'Browse as guest' and 'Add person' buttons, that are only shown on login screen shelf. Split existing click target metrics into separate histograms for login and lock screen. Use helper enumerations that are converted to histogram values to keep metrics deduction code enclosed in metrics recorders. Bug: 798848 Change-Id: I9a6ddbccfcd301dec770362916ceaa7ca9fa721e Reviewed-on: https://chromium-review.googlesource.com/894063 Commit-Queue: Aga Wronska <agawronska@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Jacob Dufault <jdufault@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Reviewed-by:
Xiaoyin Hu <xiaoyinh@chromium.org> Cr-Commit-Position: refs/heads/master@{#534859}
-
Stuart Langley authored
The mojo work for web clipboard has introduced a regression when copying images. Originally the code was in content and was using net::EscapeForHTML to escape the URL of the image and the title. When converted to mojo and moved inside of blink this was changed to EncodeWithURLEscapeSequences which is a different encoding scheme. This change reverts to using an escaping the same as net::EscapeForHTML, however as net::EscapeForHTML uses std::string and we are working with WTF::String we have had to copy the code rather than re-use it. Bug: 806076 Change-Id: Ic51835c555c071571a837018d74a27fd455362cf Reviewed-on: https://chromium-review.googlesource.com/896762 Commit-Queue: Stuart Langley <slangley@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#534858}
-
Jiaquan He authored
The AppList UI is being moved into Ash, we'll not be able get its window in Chrome any more. Bug: 733662 Change-Id: I132cba730516a5b1492d306fb99651543a0ef364 Reviewed-on: https://chromium-review.googlesource.com/897470Reviewed-by:
Trent Apted <tapted@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Jiaquan He <hejq@google.com> Cr-Commit-Position: refs/heads/master@{#534857}
-
Benjamin Shaya authored
CHECK on user builds do not create logs for DEATH_TEST to match. Change-Id: I2df09257311579133701be0f1293f4107ce99f1e Bug: b/72821844 Test: cast_audio_backend_unittests on device w/ user build Reviewed-on: https://chromium-review.googlesource.com/903052Reviewed-by:
Kenneth MacKay <kmackay@chromium.org> Commit-Queue: Benjamin Shaya <bshaya@chromium.org> Cr-Commit-Position: refs/heads/master@{#534856}
-
https://skia.googlesource.com/skia.git/+log/744160486520..5dd202dc9002 $ git log 744160486..5dd202dc9 --date=short --no-merges --format='%ad %ae %s' 2018-02-06 reed Revert "Revert "move GrColor.h to private, IWYU"" 2018-02-06 angle-skia-autoroll Roll skia/third_party/externals/angle2/ ceb7190bb..fbb1c7921 (3 commits) 2018-02-06 fmalita Fix picture shader handling of outer local matrix 2018-02-06 angle-skia-autoroll Roll skia/third_party/externals/angle2/ ca5c10598..ceb7190bb (1 commit) 2018-02-06 reed add maskfilter+localmatrix to fix savelayer 2018-02-06 jvanverth Revert "Cleanup of large text rendering." Created with: roll-dep src/third_party/skia The AutoRoll server is located here: https://autoroll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=bsalomon@chromium.org Change-Id: If6c02f50485a9ee496f683bab52bb8a0441ac303 Reviewed-on: https://chromium-review.googlesource.com/905237Reviewed-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@{#534855}
-
Doug Arnett authored
Uses NoScript inflation_percent from optimization guide hints if not 0. Bug: 807662 Change-Id: I6478e751bc073c49159098eed37b702e9160641b Reviewed-on: https://chromium-review.googlesource.com/895286Reviewed-by:
Ryan Sturm <ryansturm@chromium.org> Commit-Queue: Doug Arnett <dougarnett@chromium.org> Cr-Commit-Position: refs/heads/master@{#534854}
-
Lukasz Anforowicz authored
Bug: 809735 Change-Id: I9e5376b7fcea6f4a96fdf831b13bae801753e962 Tbr: creis@chromium.org Reviewed-on: https://chromium-review.googlesource.com/905748Reviewed-by:
Łukasz Anforowicz <lukasza@chromium.org> Commit-Queue: Łukasz Anforowicz <lukasza@chromium.org> Cr-Commit-Position: refs/heads/master@{#534853}
-
Eugene But authored
This tests load rejection when ShouldAllowResponse returns false. Bug: 614168,789585 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I91c1da903fdda7910aadc7ffdf74c23a72f79bde Reviewed-on: https://chromium-review.googlesource.com/900094Reviewed-by:
Danyao Wang <danyao@chromium.org> Commit-Queue: Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#534852}
-
Matthew Jones authored
BUG=803098 Change-Id: I18537d5a844368a694bbb292a98a94da735c6bfb Reviewed-on: https://chromium-review.googlesource.com/900100 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@{#534851}
-
Mike Wasserman authored
These tests appear to pass as-is on ToT @ #534716. Bug: 695563, 698887, 775177 Test: Automated Change-Id: I6d3979aec6738e4d14c2119faa3488d0ee1c596e Reviewed-on: https://chromium-review.googlesource.com/905687Reviewed-by:
James Cook <jamescook@chromium.org> Commit-Queue: Michael Wasserman <msw@chromium.org> Cr-Commit-Position: refs/heads/master@{#534850}
-
Mike Baxley authored
FullscreenTestCase.testShowHeaderWhenChildTabCloses results in an error when the child tab is closed, because the web view is invlaidated. this behavior is expected, and should be verified. Add a helper to tap on a web view element, which can return an NSError. Bug: 807789 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I401319a1c19af60cdfd71e4fc6a75f36153e954b Reviewed-on: https://chromium-review.googlesource.com/902792 Commit-Queue: Mike Baxley <baxley@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#534849}
-
Xiaocheng Hu authored
Spellchecker has a heuristic that, if the bounding box of an editing host is not in viewport, don't check anything in the editing host. This is wrong as there might still be descendants of the editing host inside the viewport. Hence, this patch removes the heuristic. Bug: 768231 Change-Id: I22995b365c6a3e10eedb76a4868746f09261e733 Reviewed-on: https://chromium-review.googlesource.com/903265 Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org> Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#534848}
-
Thomas Anderson authored
This reverts commit 036ea24b. Reason for revert: Causing build failure on Cast Audio Linux: https://ci.chromium.org/buildbot/chromium.linux/Cast%20Audio%20Linux/8575 Original change's description: > Introduce WebRtcRemoteEventLogManager > > WebRtcRemoteEventLogManager is a member of WebRtcEventLogManager, in > charge of managing remote-bound WebRTC event logs: > * Store remote-bound log files locally, persisting them between session > of Chrome. > * Uploading them when permissible (when no active peer connections are > present, with which the upload's increased bandwidth utilization might > interfere). > * Purge remote-bound log files from local disk once an upload attempt > was made, regardless of whether it was successful. (Otherwise, we might > end up attempting multiple times, wasting bandwidth on an upload that > always fails after a non-trivial amount of data was pushed upstream. > More refined retry behavior is to be added at a later stage.) > > Upcoming related work: > * Actual implementation of the uploader (this CL deals with managing the > files to be uploaded, and the timing of the upload). > * Implementation of the JS hooks. > > Bug: 775415 > Change-Id: Ib5ee6081ca13d85cb8a3f38d6462bbd61a99dcae > Reviewed-on: https://chromium-review.googlesource.com/891219 > Commit-Queue: Elad Alon <eladalon@chromium.org> > Reviewed-by: Avi Drissman <avi@chromium.org> > Reviewed-by: Guido Urdaneta <guidou@chromium.org> > Cr-Commit-Position: refs/heads/master@{#534826} TBR=avi@chromium.org,guidou@chromium.org,terelius@chromium.org,eladalon@chromium.org Change-Id: I2bc87f1002eac26f4c77bc5082be45db80b0449d No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 775415 Reviewed-on: https://chromium-review.googlesource.com/905826Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Cr-Commit-Position: refs/heads/master@{#534847}
-
Nate Chapin authored
We're shipping the kResourcesBeforeDCL in M65, so remove the other behaviors now that we've branched. Bug: 513459 Change-Id: Id5b5f0bac5c35c0e3a3f574a4695858916c40283 Reviewed-on: https://chromium-review.googlesource.com/875261Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Jesse Doherty <jwd@chromium.org> Commit-Queue: Nate Chapin <japhet@chromium.org> Cr-Commit-Position: refs/heads/master@{#534846}
-
Andrey Kosyakov authored
This reverts commit 022ed8ae. Reason for revert: this broke Cast Audio bots, https://ci.chromium.org/buildbot/chromium.linux/Fuchsia%20ARM64%20Cast%20Audio/4367 Original change's description: > RenderProcessHost exiting is an implicit PeerConnection removal > > When a RenderProcessHost exits clearly or crashes, all of its > PeerConnections should be considered as removed. > > Bug: 775415, 805398, 808402 > Change-Id: I223e6e867758ef05d896608fbdcc3bc824238dd8 > Reviewed-on: https://chromium-review.googlesource.com/899348 > Commit-Queue: Elad Alon <eladalon@chromium.org> > Reviewed-by: Guido Urdaneta <guidou@chromium.org> > Cr-Commit-Position: refs/heads/master@{#534840} TBR=guidou@chromium.org,terelius@chromium.org,eladalon@chromium.org Change-Id: I6f33dded2bba23f471c73495518fdded3ccbc3dc No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 775415, 805398, 808402 Reviewed-on: https://chromium-review.googlesource.com/905638Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#534845}
-