- 21 Mar, 2018 40 commits
-
-
Oksana Zhuravlova authored
This change moves logfont_win.mojom from //mojo/common to //mojo/public/mojom/base and logfont_win.typemap to //mojo/public/cpp/base, as well as text_direction.mojom and corresponding files. Unit test for TextDirection was updated and moved to mojo_unittests. Bug: 799482 Change-Id: Ib3d8b09d7aa3b7e12d3f66b38dbcea294a28c035 Reviewed-on: https://chromium-review.googlesource.com/971263Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Oksana Zhuravlova <oksamyt@chromium.org> Cr-Commit-Position: refs/heads/master@{#544843}
-
Evan Stade authored
Using false for |by_user| for slide out breaks a lot of NotificationDelegates. We'll have to find another fix. Bug: 805208,822248 Change-Id: Ic56783427354b96f74ac393b7bcd07380eadfda5 Reviewed-on: https://chromium-review.googlesource.com/966891 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Tetsui Ohkubo <tetsui@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#544842}
-
Joe Mason authored
R=csharp Bug: 802092 Change-Id: I9837aa806ed9a3f6a58465dbffe2dfd2b34d03ac Reviewed-on: https://chromium-review.googlesource.com/967945 Commit-Queue: Joe Mason <joenotcharles@chromium.org> Reviewed-by:
Chris Sharp <csharp@chromium.org> Cr-Commit-Position: refs/heads/master@{#544841}
-
wutao authored
This cl makes some chanes to Keyboard Shortcut Viewer (KSV): 1. Increases icon size to 16. 2. Increases the bubble height to make it circular when containing icon. 3. Updates background color. Bug: 822351 Test: manual test. Change-Id: Icbbbd26f6fb653ee7b0214259a1cc9b9610925a9 Reviewed-on: https://chromium-review.googlesource.com/971471Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Commit-Queue: Tao Wu <wutao@chromium.org> Cr-Commit-Position: refs/heads/master@{#544840}
-
Joshua Bell authored
Like the corresponding DOM and SVG idlharness tests, the (new) WebAudio comprehensive IDLHarness test is just too slow on the MSAN bots and times out. Since it's unlikely we'll fix it and we don't want to slow down the builds, [Skip] it. Bug: 824455 Change-Id: Ie8b5f34edeccfa87f4385de0b2797871c48db35f Reviewed-on: https://chromium-review.googlesource.com/973985Reviewed-by:
Thomas Guilbert <tguilbert@chromium.org> Commit-Queue: Joshua Bell <jsbell@chromium.org> Cr-Commit-Position: refs/heads/master@{#544839}
-
Chan authored
Bug: 824461 Change-Id: I5926edbc1263d5dbd8d46eee7123e21be484e20a Reviewed-on: https://chromium-review.googlesource.com/974062Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Shuotao Gao <stgao@chromium.org> Commit-Queue: Chan Li <chanli@chromium.org> Cr-Commit-Position: refs/heads/master@{#544838}
-
Andrew Grieve authored
Fixes on-screen keyboard becoming unresponsive when you tap on an <input> element. Bug: 824048 Change-Id: I28d58cfb2f8aa70461961a49c7ff80ce0a8c1074 Reviewed-on: https://chromium-review.googlesource.com/974082Reviewed-by:
Changwan Ryu <changwan@chromium.org> Commit-Queue: agrieve <agrieve@chromium.org> Cr-Commit-Position: refs/heads/master@{#544837}
-
Kristian H. Kristensen authored
The incoming z_order represents the relative ordering of the planes and is just used for sorting the list. Later we assign hw planes in matching stacking order, so as to preserve the relative order. There's nothing that prevents us from accepting negative z_order, so remove this check. This makes the underlay strategy work for ozone. Bug: 789288 Change-Id: I2961511de53b156042220edeccc4c93e4541d130 Reviewed-on: https://chromium-review.googlesource.com/969831Reviewed-by:
Daniele Castagna <dcastagna@chromium.org> Commit-Queue: Kristian H. Kristensen <hoegsberg@chromium.org> Cr-Commit-Position: refs/heads/master@{#544836}
-
Kevin Marshall authored
This is a reland of b4c33049 Original change's description: > Fuchsia: enable packaged runs on more test suites. > > Enable packaged runs for: > * base_unittests > * crypto_unittests > * ipc_tests > * media_unittests > * mojo_unittests > > Bug: 798851 > Change-Id: Iab5a5decc6a85b00c89b975735ea961bdb94a6fe > Reviewed-on: https://chromium-review.googlesource.com/969300 > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > Commit-Queue: Kevin Marshall <kmarshall@chromium.org> > Cr-Commit-Position: refs/heads/master@{#544248} TBR=dpranke@chromium.org Bug: 798851 Change-Id: Ic703fdb1c77e6aae3020d8ac8f74cbbea8703cf6 Reviewed-on: https://chromium-review.googlesource.com/972322 Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Cr-Commit-Position: refs/heads/master@{#544835}
-
Fady Samuel authored
There's a race in cc somewhere from commit to draw. I don't know exactly how to repro the race yet even though I have a high probably fix. This CL is intended to catch the race in the wild and produce a stack trace in a crash log. Hopefully from there we can acertain repro steps. Once repo steps are produced locally (either via user interaction or unit test) then this CL will be reverted. Bug: 672962 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel Change-Id: I3bce066591e15d5c3aac7d4c8685dce411e284b7 Reviewed-on: https://chromium-review.googlesource.com/973987Reviewed-by:
Saman Sami <samans@chromium.org> Commit-Queue: Fady Samuel <fsamuel@chromium.org> Cr-Commit-Position: refs/heads/master@{#544834}
-
Fredrik Söderquist authored
Since DEFINE_TYPE_CASTS now provide a To<type>OrNull, we can use that instead of essentially open-coding the same thing. Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I22113ff36a406d0afc17e5ecf37158e1dec1fe8e Reviewed-on: https://chromium-review.googlesource.com/973376Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#544833}
-
Yuly Novikov authored
This reverts commit c34306d8. Reason for revert: Win10 driver version was fixed Original change's description: > Disable angle-stuck-depth-textures flaky test entirely > > Bug: 820419 > Tbr: kbr@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: Ibd95ec218a700b7a9a6e34336f4ddee5442f8b02 > Reviewed-on: https://chromium-review.googlesource.com/956116 > Reviewed-by: Kenneth Russell <kbr@chromium.org> > Reviewed-by: Jamie Madill <jmadill@chromium.org> > Commit-Queue: Luc Ferron <lucferron@chromium.org> > Cr-Commit-Position: refs/heads/master@{#542209} TBR=jmadill@chromium.org,kbr@chromium.org,lucferron@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 820419 Change-Id: I3b86e2249440b195353583348b0c1fae010e3965 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 Reviewed-on: https://chromium-review.googlesource.com/973981Reviewed-by:
Yuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#544832}
-
Rob Percival authored
This bug has been archived with a message instructing people to report bugs to https://bugs.llvm.org/. BUG=695243 Change-Id: I5c6655d52797d41229435788632887908f7cb2af Reviewed-on: https://chromium-review.googlesource.com/973441Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Rob Percival <robpercival@chromium.org> Cr-Commit-Position: refs/heads/master@{#544831}
-
Yuwei Huang authored
The issue is that DisconnectFromHost() invalidates gestureInterpreter before ClientGesture is destroyed (which is destroyed when the host view is removed). If the user is interacting with the view after gestureInterpreter is destroyed but before the view is removed then ClientGesture will call gestureInterpreter's methods on null, which crashes the app. This CL fixes this by always checking _client and _client.gestureInterpreter before using them. Bug: 823983 Change-Id: I3889c95daf28b84bbf9aecd26f0024dcb15adbe4 Reviewed-on: https://chromium-review.googlesource.com/972631Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Commit-Queue: Yuwei Huang <yuweih@chromium.org> Cr-Commit-Position: refs/heads/master@{#544830}
-
Jacob Dufault authored
These tests fail in views-based login since OobeBaseTest has some hard dependencies on webui login. Refactoring OobeBaseTest will likely take some time. Change-Id: Ic7cac68c1e9e0d6630deacfbfdad36a3651f5e6b BUG: 784495 Reviewed-on: https://chromium-review.googlesource.com/957967Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Achuith Bhandarkar <achuith@chromium.org> Commit-Queue: Jacob Dufault <jdufault@chromium.org> Cr-Commit-Position: refs/heads/master@{#544829}
-
Nathan Parker authored
Change-Id: I7a22315464ebef4b63069733e6adb0b41d6216af Reviewed-on: https://chromium-review.googlesource.com/974102Reviewed-by:
Varun Khaneja <vakh@chromium.org> Commit-Queue: Nathan Parker <nparker@chromium.org> Cr-Commit-Position: refs/heads/master@{#544828}
-
kylechar authored
Enforce that all mojom::CompositorFrameSinks are destroyed before FrameSinkManagerImpl is destroyed. Running with VizDisplayCompositor this will ensure that no RootCompositorFrameSinkImpls exist that could deadlock the compositor and GPU thread on destruction. For normal Chrome this will only effect offscreen canvas. Fix offscreen canvas tests so they destroy everything that is created. Bug: 820437 Change-Id: I5bd71456ea86fb6b1d89347f4d39de75a72dd86a Reviewed-on: https://chromium-review.googlesource.com/969590 Commit-Queue: Fady Samuel <fsamuel@chromium.org> Commit-Queue: kylechar <kylechar@chromium.org> Reviewed-by:
Fady Samuel <fsamuel@chromium.org> Reviewed-by:
Olivia Lai <xlai@chromium.org> Cr-Commit-Position: refs/heads/master@{#544827}
-
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/ba51bb3c1274..a68d82cb2fde $ git log ba51bb3c1..a68d82cb2 --date=short --no-merges --format='%ad %ae %s' 2018-03-21 sergiyb Add progress indicator that prints a dot on nearly each RPCs request 2018-03-21 sergiyb Add ability to filter issues precisely by comment publication date Created with: roll-dep src/third_party/depot_tools The AutoRoll server is located here: https://depot-tools-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. TBR=agable@chromium.org Change-Id: I9945137a93164f03056aa6d89760e22f7e6c77cb Reviewed-on: https://chromium-review.googlesource.com/973760 Commit-Queue: depot-tools-chromium-autoroll <depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by:
depot-tools-chromium-autoroll <depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#544826}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 2b021ec7. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/14307 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 Directory owners for changes in this CL: msisov@igalia.com: external/wpt/webvtt TBR=robertma No-Export: true Change-Id: I35380f44b913fda18833f5ea1318ace9b3a43e41 Reviewed-on: https://chromium-review.googlesource.com/973748 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Robert Ma <robertma@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#544825}
-
Bo Liu authored
Combine updating visibility and importance of a widget into a single call on RenderProcessHost to update its priority. RPH keeps track of the priority of each widget (client) and aggregates over them to compute the effective priority of the process. This CL is meant to be a pure refactor with no behavior changes. There are few reasons for this design for future changes: * New fields are going to be added, so combining them into a single struct will adding new fields easier. * New fields will not be independent, but have meaning that depends on existing priority. Tracking fields independently will lead to incorrect result; see crbug.com/813232#c12. So they have to be updated together. * Wording has been changed from "widget" to "client" so that workers can also contribute priority to RPH in the future. Bug: 813232 Change-Id: Iaa6877af5010100562655be6b1aa2951219d67b5 Reviewed-on: https://chromium-review.googlesource.com/933224Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Commit-Queue: Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#544824}
-
Alexei Filippov authored
Group targets by isolate id. Show live heap size for each isolate. BUG=823874 Change-Id: Ifbc9c51c30a06670f85eea1113a5a24686966658 Reviewed-on: https://chromium-review.googlesource.com/972153 Commit-Queue: Alexei Filippov <alph@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#544823}
-
Adam Langley authored
Since the relying party ID is a domain, not an origin, we have to be careful allowing other schemes to use webauthn since the authority part of their URLs will be blindly interpreted as a domain. It's possible in the future that we'll want to allow this in some cases with a mapping function to domain names but, for now, restrict to HTTPS origins. Change-Id: I00d6acf8a8efe23b6197c82d73aef137ac84cb55 Bug: none Reviewed-on: https://chromium-review.googlesource.com/973661Reviewed-by:
Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#544822}
-
Sergey Berezin authored
BUG=823701 TBR=pauljensen@chromium.org Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I62bdc7d8ba86b542e7695351c5cfcc28657adf0d Reviewed-on: https://chromium-review.googlesource.com/973913 Commit-Queue: Sergey Berezin <sergeyberezin@chromium.org> Reviewed-by:
Paul Jensen <pauljensen@chromium.org> Reviewed-by:
Sergey Berezin <sergeyberezin@chromium.org> Cr-Commit-Position: refs/heads/master@{#544821}
-
Sebastien Marchand authored
Bug: 822265 Change-Id: I673454d4761e51389039c4f17332125e13487dd3 Reviewed-on: https://chromium-review.googlesource.com/973461Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org> Cr-Commit-Position: refs/heads/master@{#544820}
-
Gabriel Charette authored
I'm tired of having to call a static method deep into content/test just to RunUntilIdle. This brings TestBrowserThreadBundle to feature parity with ScopedTaskEnvironment in this space which makes sense as the two are interchangeable. This also comes closer to robliao's goal of getting rid of TaskScheduler::FlushForTesting() (used by content::RunAllTasksUntilIdle()). And lastly, it makes cleanups in crbug.com/823797 less ugly as some of them will need to go from using a ScopedTaskEnvironment to a TestBrowserThreadBundle and reverting them back to static global flush is ugly. R=jam@chromium.org, robliao@chromium.org Bug: 823797, 824431 Change-Id: I9f3127f3e46a520fd2d7105ed8139f1046cb3f73 Reviewed-on: https://chromium-review.googlesource.com/971821 Commit-Queue: Gabriel Charette <gab@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Robert Liao <robliao@chromium.org> Cr-Commit-Position: refs/heads/master@{#544819}
-
Hiroki Nakagawa authored
Bug: 624696 Change-Id: I1a501ec3b90dc135fef41274818b94dd80557cc1 Reviewed-on: https://chromium-review.googlesource.com/972782Reviewed-by:
Alexander Timin <altimin@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Cr-Commit-Position: refs/heads/master@{#544818}
-
Jun Cai authored
This CL updates PlatformSensorProviderLinux to construct a ABSOLUTE_ORIENTATION_* fusion sensor using ACCELEROMETER and MAGNETOMETER by using the existing AbsoluteOrientationEulerAnglesFusionAlgorithmUsingAccelerometerAndMagnetometer and OrientationQuaternionFusionAlgorithmUsingEulerAngles fusion sensor algorithms. Bug: 777739 Change-Id: I179a7096a205affadaac9ac2ac42c40747f7f67d Reviewed-on: https://chromium-review.googlesource.com/972452 Commit-Queue: Jun Cai <juncai@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#544817}
-
https://skia.googlesource.com/skia.git/+log/e65a5cd3fc34..ca37f32c7014 $ git log e65a5cd3f..ca37f32c7 --date=short --no-merges --format='%ad %ae %s' 2018-03-08 reed change canvas-state to just record clip bounds 2018-03-21 halcanary GrGLExtensions: remove unneded unique_ptr 2018-03-21 djsollen Update Android build file for SkQP to point to ndk compliant libjsoncpp 2018-03-16 egdaniel Fix version check for vulkan layers 2018-03-21 robertphillips Add texture-specific flags for External & Rectangle textures Created with: roll-dep src/third_party/skia BUG=chromium:b/74442448 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;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=jvanverth@chromium.org Change-Id: I331333d4c93630a485bf1ea018139774dba82d97 Reviewed-on: https://chromium-review.googlesource.com/973758Reviewed-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@{#544816}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/b2c284af..ab2ca46a 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;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try: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: I0b3cff8883b0fcfc39ec0aebe26951377e2a84ce Reviewed-on: https://chromium-review.googlesource.com/973582Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#544815}
-
Charles Harrison authored
We forgot to launch this by default, and the experiment ended in M63. Launch now and optionally ramp up M65+. Bug: 599875 Change-Id: I0e49ec389ab4aa679bd3e98e3493facef04e02b5 Reviewed-on: https://chromium-review.googlesource.com/973559Reviewed-by:
Bryan McQuade <bmcquade@chromium.org> Reviewed-by:
Nate Chapin <japhet@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Commit-Queue: Charlie Harrison <csharrison@chromium.org> Cr-Commit-Position: refs/heads/master@{#544814}
-
https://pdfium.googlesource.com/pdfium.git/+log/a17ac192c043..36bbc24e2d7e $ git log a17ac192c..36bbc24e2 --date=short --no-merges --format='%ad %ae %s' 2018-03-21 thestig Use more const pointers in CPDF_ContentMarkItem. 2018-03-21 thestig Rename foo_{wid,hei} to foo_{width,height}. 2018-03-21 dsinclair Move declarations in pdfium_test closer to usage 2018-03-21 thestig Rename "des_foo" to "dest_foo". 2018-03-21 thestig Add helpers to work with FXDIB_Format. 2018-03-21 thestig Add a regression test for bug 821454. Created with: roll-dep src/third_party/pdfium BUG=chromium:823369 The AutoRoll server is located here: https://pdfium-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. TBR=dsinclair@chromium.org Change-Id: I10bca8d9dffb4b94a8c031e738d5bf27eb13f89e Reviewed-on: https://chromium-review.googlesource.com/973891 Commit-Queue: pdfium-chromium-autoroll <pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by:
pdfium-chromium-autoroll <pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#544813}
-
Charles Harrison authored
Bug: 822624 Change-Id: I1ffee8e38bee2e016dc6beddd3eb05464def68a8 Reviewed-on: https://chromium-review.googlesource.com/966494 Commit-Queue: Charlie Harrison <csharrison@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Cr-Commit-Position: refs/heads/master@{#544812}
-
erikchen authored
In order to accomplish this, I added a non-lock based mechanism [TLS] to acquire the name of the current thread. In the process, I updated the SetName() API to only allow name-setting for the current thread. Bug: 809221 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: Ic3e63c396c6ddda6da4b8d74abb3083ff22cfa8c Reviewed-on: https://chromium-review.googlesource.com/969403 Commit-Queue: Erik Chen <erikchen@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#544811}
-
Sunny Sachanandani authored
Remove the DCHECK for wait order number, and remove the spammy invalid client wait logging. R=piman BUG=797137,824430 Cq-Include-Trybots: luci.chromium.try:linux_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: I9bcdcab80c01b708817c31a4d7ad5f5e885226c9 Reviewed-on: https://chromium-review.googlesource.com/969968 Commit-Queue: Sunny Sachanandani <sunnyps@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Cr-Commit-Position: refs/heads/master@{#544810}
-
Zhongyi Shi authored
- connection will not be closed if there's any packet write error when sending connectivity probes as those are sent on a different path; - connection will not be blocked if the connectivity probe is sent by a non-default packet writer. Flag protected by quic_handle_write_results_for_connectivity_probe. Manually merge internal change: 189676976. Change-Id: Ie0389f3342365ed93d1c12c414e90a5118a004de Reviewed-on: https://chromium-review.googlesource.com/972349Reviewed-by:
Ryan Hamilton <rch@chromium.org> Commit-Queue: Zhongyi Shi <zhongyi@chromium.org> Cr-Commit-Position: refs/heads/master@{#544809}
-
Xiaoqian Dai authored
Previously, we updated the split view's state when a SnapWindow() request comes in. We should update it after the window is actually snapped. This CL is the first step of crbug.com/822487. Bug: 822487 Change-Id: I476aa18982094f182f19b752bf91daa76f47fef7 Reviewed-on: https://chromium-review.googlesource.com/967362 Commit-Queue: Xiaoqian Dai <xdai@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#544808}
-
Reza.Zakerinasab authored
TBR=junov@chromium.org Bug: 823260 Change-Id: I9851d6ff38c36c16edbdfa1cb715957e8e6e3eed Reviewed-on: https://chromium-review.googlesource.com/973554Reviewed-by:
Mohammad Reza Zakerinasab <zakerinasab@chromium.org> Commit-Queue: Mohammad Reza Zakerinasab <zakerinasab@chromium.org> Cr-Commit-Position: refs/heads/master@{#544807}
-
liberato@chromium.org authored
Previously, we would use the (optional) CommandBufferIdPtr when building a MojoVideoDecoder. However, this is not such a good idea when it's null. This CL causes MojoVideoDecoder construction to fail gracefully for all platforms, since all platforms currently require it. Bug: 813245 Change-Id: Ia513da0ab64e06a0c5a586515c82009ecc3ffaf6 Reviewed-on: https://chromium-review.googlesource.com/973557Reviewed-by:
Xiaohan Wang <xhwang@chromium.org> Commit-Queue: Frank Liberato <liberato@chromium.org> Cr-Commit-Position: refs/heads/master@{#544806}
-
Aleks Totic authored
Broken image was caused by not positioning of placed floats Bug: 635619 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_layout_ng Change-Id: Ifb60bee7defeaa9e4ca2bacab9c6607b482b5e8f Reviewed-on: https://chromium-review.googlesource.com/973700 Commit-Queue: Aleks Totic <atotic@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/master@{#544805}
-
Harald Alvestrand authored
This verifies that the sender throws the right error when called after the connection closing. Bug: chromium:822799 Change-Id: Id3ab4ddc65b1510526fa49b7bfe3f9f95a7f2d65 Reviewed-on: https://chromium-review.googlesource.com/968927Reviewed-by:
Henrik Boström <hbos@chromium.org> Commit-Queue: Harald Alvestrand <hta@chromium.org> Cr-Commit-Position: refs/heads/master@{#544804}
-