- 22 Aug, 2018 40 commits
-
-
Dale Curtis authored
This was needed where codec specific behavior was causing crashes with splicing, but now that we just use partial append window trimming, there's no reason not to support it on every audio codec. BUG=none TEST=unittests pass. 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: Ia52d058743f557bcddd24e31bcc5cf694e83ef8a Reviewed-on: https://chromium-review.googlesource.com/1182662 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
Matthew Wolenetz <wolenetz@chromium.org> Cr-Commit-Position: refs/heads/master@{#585079}
-
Mitsuru Oshima authored
Rotation transform should be constructed so that when it is scaled, it should not lead to subpixel origin. Bug: 869090 Test: Covered by unittest. Also tested on a device Change-Id: I5bc0c0885350e0cbc10fe23f8300cbf9b4492449 Reviewed-on: https://chromium-review.googlesource.com/1184144Reviewed-by:
Malay Keshav <malaykeshav@chromium.org> Commit-Queue: Mitsuru Oshima (OOO) <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#585078}
-
Fredrik Söderquist authored
Rename SVGAnimatedPropertyBase::SetBaseValueAsString to AttributeChanged, to reflect how it interacts with the system in general (sets a new value based on an updated attribute string) - the counter- part to this notifier being BaseValueChanged. Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I55b42d7662c744d4d4d39b8ea0545d0318bcbeab Reviewed-on: https://chromium-review.googlesource.com/1184844Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#585077}
-
Jüri Valdmann authored
This method checks for 3 bytes of available data, but reads only 2 bytes. Change-Id: I504e9ed6cda18907a3f74cd931ef97d910043df5 Reviewed-on: https://chromium-review.googlesource.com/1185019Reviewed-by:
Rachel Blum <groby@chromium.org> Commit-Queue: Rachel Blum <groby@chromium.org> Cr-Commit-Position: refs/heads/master@{#585076}
-
Helen Li authored
network::SocketDataPump uses Socket::ReadIfReady instead of Socket::Read, and expects ReadIfReady to be implemented. This CL adds the implementation to HttpProxyClientSocket, and fixes the incorrect test expectation, which can serve to catch future regressions. Bug: 875855 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: Ic9b79cf8c1290de55d102052ea5c84fcac0f4fbd Reviewed-on: https://chromium-review.googlesource.com/1183984Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#585075}
-
Theresa authored
BUG=876483 Change-Id: I812e10922cee721cdd510c6a98190c8899cf3710 Reviewed-on: https://chromium-review.googlesource.com/1183809 Commit-Queue: Theresa <twellington@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Cr-Commit-Position: refs/heads/master@{#585074}
-
bsheedy authored
Clears the two VR feedback shared preference values before a test starts if they aren't currently the default. This is to prevent flakiness in VrFeedbackInfoBarTest#* since shared preference settings are not automatically reset between tests (which is expected). Bug: 875977 Change-Id: Ic69cadd2ae43b1a3570ee9f349f2770fed812138 Reviewed-on: https://chromium-review.googlesource.com/1183816Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Commit-Queue: Brian Sheedy <bsheedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#585073}
-
Xida Chen authored
Right now in TouchActionFilter, the member gesture_sequence_in_progress_ turns to true at GestureScrollBegin and false at GestureScrollEnd. When this is true, we do not reset the |scrolling_touch_action_| because being true means there are more incoming gesture events. However, when the renderer is busy, it could happen that we have GestureTapDown, and then we receive the OnHasTouchEventHandlers(true) message and reset the |scrolling_touch_action_|. In this case, processing the incoming gestures such as GSB can cause a crash because the |scrolling_touch_action_| has no value. Bug: 851644 Change-Id: Idd9de11fc59ef87d7fa8f2d9e3d951fb4db5c2c5 Reviewed-on: https://chromium-review.googlesource.com/1180560Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Commit-Queue: Xida Chen <xidachen@chromium.org> Cr-Commit-Position: refs/heads/master@{#585072}
-
Ian Kilpatrick authored
Change-Id: Iffb3fd56ff4578f60e2c5c8d019fb75ebb61d9fb Reviewed-on: https://chromium-review.googlesource.com/1183492 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#585071}
-
Martin Kreichgauer authored
This changes FidoRequestHandler to translate any CtapDeviceResponseCode::kCtap2ErrOperationDenied (CTAP2_ERR_OPERATION_DENIED) responses from platform authenticators into FidoReturnCode::kUserConsentDenied. Upon receiving this error, all outstanding authenticator requests are cancelled, and the error is bubbled up into a NOT_ALLOWED_ERROR. More concretely, this is going to change UI behavior such that the request is cancelled if the user clicks cancel or fails verification in the native macOS Touch ID dialog. The WebAuthn spec in sections 5.1.3 and 5.1.4 states that "If any authenticator returns a status indicating that the user cancelled the operation", which indicate that the UA should cancel the entire operation and return NOT_ALLOWED_ERROR in this case". CTAP2_ERR_OPERATION_DENIED is used by the CTAP2 spec to signal - user declined to create a credential - user failed gesture verification - time out during user consent collection - user failing to select a credential on authenticators with account chooser UI (deny or timeout) Because of the reference to authenticator-defined timeouts, it is debatable whether this CTAP error sufficiently indicates that "the user cancelled the operation". For internal authenticators (Touch ID), however, this is definitely the case. I will track a follow-up discussion whether to extend this behavior to external authenticators also in crbug/875982. Also fix a bug in MockFidoDevice GetId generation and add a |ExpectCtapRequestAndReturnError| helper method. Bug: 875982, 678128 Change-Id: I616b319accb7d387c0d98de059c52b04bc80ce59 Reviewed-on: https://chromium-review.googlesource.com/1181863 Commit-Queue: Martin Kreichgauer <martinkr@google.com> Reviewed-by:
Jun Choi <hongjunchoi@chromium.org> Reviewed-by:
Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#585070}
-
Jeremy Roman authored
This allows DeferredTaskHandler::RemoveMarkedSummingJunction to assume that the graph lock is held, rather than having to acquire it (recursively, if it's already held). Since Oilpan finalizers cannot safely touch other heap objects (as those object may be swept in the same GC cycle), the AudioNode and AudioParam objects now hold a direct reference to the DeferredTaskHandler associated with the audio context, which is needed to acquire the appropriate lock. Bug: 856641 Change-Id: Ied445a684d60b8beccb080b98867fcf80f967d21 Reviewed-on: https://chromium-review.googlesource.com/1182296 Commit-Queue: Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Raymond Toy <rtoy@chromium.org> Cr-Commit-Position: refs/heads/master@{#585069}
-
Matthew Cary authored
This adds *SharedMemoryRegion create methods that parallel those in base::. These use mojo::SharedMemoryBuffer::Create, which will use a broker if appropriate to create shared memory in unprivileged processes. Also update comments to clarify migration. Bug: 872778 Change-Id: Ia32da8181fd37d88a49a26e3e7e158612147646b Reviewed-on: https://chromium-review.googlesource.com/1169602Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Commit-Queue: Matthew Cary <mattcary@chromium.org> Cr-Commit-Position: refs/heads/master@{#585068}
-
Hans Wennborg authored
Previously we used a GCC/libstdc++ package from Ubuntu Precise to build a Clang that would work on Precise or later. These days, all bots and developers are on Trusty or later, so this should no longer be necessary. Bug: none Change-Id: I518ee55d07c04dc89163fe262c81d935e05fed78 Reviewed-on: https://chromium-review.googlesource.com/1183915Reviewed-by:
Nico Weber <thakis@chromium.org> Reviewed-by:
Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Hans Wennborg <hans@chromium.org> Cr-Commit-Position: refs/heads/master@{#585067}
-
Chromite Chromium Autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/4b9089142927..4cc579e9d288 git log 4b9089142927..4cc579e9d288 --date=short --no-merges --format='%ad %ae %s' 2018-08-22 frankhu@google.com Add apex-access group to group baseline 2018-08-22 yueherngl@google.com octopus: add additional sign_type 2018-08-21 lannm@chromium.org Remove scripts/extract_gerrit_history 2018-08-21 lannm@chromium.org Move repository.CloneGitRepo to git.Clone 2018-08-21 manojgupta@google.com chromeos_config: Add amd64-generic-ubsan-fuzzer builder. 2018-08-21 xixuan@chromium.org cbuildbot: Remove swarming_cli_cmd. Created with: gclient setdep -r src/third_party/chromite@4cc579e9d288 The AutoRoll server is located here: https://chromite-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=chrome-os-gardeners@chromium.org Change-Id: If74dc6d8d17d1bf03dc0f371ae82bdad0adeeece Reviewed-on: https://chromium-review.googlesource.com/1184761Reviewed-by:
Chromite Chromium Autoroll <chromite-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: Chromite Chromium Autoroll <chromite-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#585066}
-
Mitsuru Oshima authored
* left_center()/top_center()/right_center()/bottom center() return the center of each edge. * Transpose() swap x/y axis Bug: None Test: covered by unittests Change-Id: Icd63578dfe236caf6376c043fc1a0ffe74dfe6cc Reviewed-on: https://chromium-review.googlesource.com/1176861Reviewed-by:
Ian Vollick <vollick@chromium.org> Commit-Queue: Mitsuru Oshima (OOO) <oshima@chromium.org> Cr-Commit-Position: refs/heads/master@{#585065}
-
Anna Offenwanger authored
Moving as many of the WebXR LayoutTests as possible over to be WebPlatformTests. All the tests that have been moved test some aspect of the spec (https://immersive-web.github.io/webxr/) in a platform agnostic way. Bug: 863557, 844772 Change-Id: I203b4c59be0daa0ca624fb0281fc33035f1be8a1 Reviewed-on: https://chromium-review.googlesource.com/1171857Reviewed-by:
Brandon Jones <bajones@chromium.org> Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Anna Offenwanger <offenwanger@chromium.org> Cr-Commit-Position: refs/heads/master@{#585064}
-
Reilly Grant authored
This class has been updated to use network::SimpleURLLoader and so no longer needs to run on the IO thread in order to access a URLRequestContextGetter. It is now incorrect to run on the IO thread because as long as the device service is hosted in the browser process it is using a SharedURLLoaderFactory that can only be accessed from the UI thread. Bug: 875283 Change-Id: I68181566aeb50dc460a32acc6afc58a9054f46a6 Reviewed-on: https://chromium-review.googlesource.com/1183969Reviewed-by:
Ken Rockot <rockot@chromium.org> Commit-Queue: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#585063}
-
Tien-Ren Chen authored
This CL adds a few layout tests for canvas with overflowing object-fit. Blink is expected to scale the contents properly and clip the overflow to to the content box. Composited version of the test doesn't work currently, but will be fixed by BGPT. There is a video counterpart in media/video-object-fit.html, which also will be fixed by BGPT. Also did minor code cleanup and updated comment that most code path don't use transform nodes for object-fit. No behavior change is expected. BUG=400829,866647 Cq-Include-Trybots: luci.chromium.try:linux-blink-gen-property-trees;luci.chromium.try:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel Change-Id: Iaa9bf18fc23b7b2309e5f46dea145eaa33a8e0f6 Reviewed-on: https://chromium-review.googlesource.com/1179278Reviewed-by:
Philip Rogers <pdr@chromium.org> Commit-Queue: Philip Rogers <pdr@chromium.org> Cr-Commit-Position: refs/heads/master@{#585062}
-
Dave Tapuska authored
Since we want to indicate the user gesture to postMessage to a dedicated worker it is cleaner to adjust the worker APIs to take a BlinkTransferableMessage. This change is intended to have no behavioral change. BUG=861735 Change-Id: I825d886877ae0931ce979c6b28930f754349dd9f Reviewed-on: https://chromium-review.googlesource.com/1183288 Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#585061}
-
Dominik Röttsches authored
Preparation for issue 874059 in which the DevToolsProtocolTest harness is needed for verifying font selection, after discussion in https://chromium-review.googlesource.com/c/chromium/src/+/1174540 Address banned and deprecated function warnings in the process: Using a OnceClosure for closing the specific RunLoop to replace QuitCurrent() and remove usage of RunMessageLoop(), mark NotificationMatcher as RepeatingCallback. Bug: 874059 Change-Id: Id63a73e4ca7d2cb3bef888eac91bb3cc7cf8fb1a Reviewed-on: https://chromium-review.googlesource.com/1183239Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Commit-Queue: Dominik Röttsches <drott@chromium.org> Cr-Commit-Position: refs/heads/master@{#585060}
-
Vadym Doroshenko authored
In order to save gaia password hash, Password Manager should detect success of form submission. For achieving this PasswordFormManager has to be created for such forms. This CL implements 1.Creating PasswordFormManager for such forms 2.PasswordFormManager doesn't fetch credentials for these forms which prevents filling. Bug: 876283 Change-Id: Icbe539d1f99777ca343d5168e41b637b3e74aa8f Reviewed-on: https://chromium-review.googlesource.com/1184919Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Commit-Queue: Vadym Doroshenko <dvadym@chromium.org> Cr-Commit-Position: refs/heads/master@{#585059}
-
Ryan Sleevi authored
The set of additional trust anchors (read: Enterprise-configured trust) presently is passed as a parameter to the CertVerifier::Verify() call, except it is logically part of the system configuration. As it does not vary between calls, move it to the CertVerifier::Config and update the PolicyCertVerifier to pass this as part of the config. Bug: 848277, 862043 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: Ibeb084cf05411a1055f0fcfc5e6e987a96eb03e9 Reviewed-on: https://chromium-review.googlesource.com/1167472 Commit-Queue: Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Richard Coles <torne@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Pavol Marko <pmarko@chromium.org> Reviewed-by:
Eric Roman <eroman@chromium.org> Reviewed-by:
Maksim Ivanov <emaxx@chromium.org> Cr-Commit-Position: refs/heads/master@{#585058}
-
Matt Menke authored
This CL moves all of the logic over to the UI thread, to keep things relatively simple and minimize thread hops, since that's where core network service objects live. It also fixes a pre-existing bug in the PPAPI UDP code, where read errors that occur when there's no pending read are converted into 0-byte read successes. Bug: 848078 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: Id6d23c26c1ac085211dfcfe23502a307fc29a284 Reviewed-on: https://chromium-review.googlesource.com/1171568 Commit-Queue: Matt Menke <mmenke@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Ramin Halavati <rhalavati@chromium.org> Reviewed-by:
Helen Li <xunjieli@chromium.org> Reviewed-by:
Bill Budge <bbudge@chromium.org> Cr-Commit-Position: refs/heads/master@{#585057}
-
webrtc-chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/4d95f1eb9beb..efbcb31cb67e git log 4d95f1eb9beb..efbcb31cb67e --date=short --no-merges --format='%ad %ae %s' 2018-08-22 qingsi@webrtc.org Revert "Remove the flag PORTALLOCATOR_ENABLE_ANY_ADDRESS_PORTS." 2018-08-22 buildbot@webrtc.org Roll chromium_revision 3e0dea7b..ab3ab1ba (584728:584945) 2018-08-22 qingsi@google.com Revert "Use also the related address in redundancy detection for candidates from" 2018-08-22 qingsi@webrtc.org Revert "Update packetsLost and jitter stats any time a packet is received." 2018-08-21 koloskova@webrtc.org Adds utility function for PCC. 2018-08-21 koloskova@webrtc.org Adds monitor interval class for PCC. 2018-08-21 aluo@chromium.org Reland "Default runner to junit4" 2018-08-21 andersc@webrtc.org Add missing ifdefs to header files for SW video codecs. 2018-08-21 ilnik@webrtc.org Revert "Move FakeCodec to separate target and behave like real encoder." 2018-08-21 koloskova@webrtc.org Adds Rtt tracker for PCC. 2018-08-21 devicentepena@webrtc.org AEC3: adding a config option for applying a more conservative initial phase. Created with: gclient setdep -r src/third_party/webrtc@efbcb31cb67e The AutoRoll server is located here: https://webrtc-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=luci.chromium.try:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng BUG=chromium:None,chromium:None,chromium:868610,chromium:none TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: I7fa8327a149cb62e4f71ab5e23bd64d8b6192d6b Reviewed-on: https://chromium-review.googlesource.com/1184764Reviewed-by:
webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#585056}
-
Maciej Pawlowski authored
When a tracked pref is cleared, it will no longer be present in the DictionaryValue that represents the pref store contents, but FilterUpdate() and FilterSerializeData() will still be called. Make the code handle nullptr Values safely. Bug: 867337 Change-Id: I1840c3f60bd815145a0f765adf5907a35bca1c87 Reviewed-on: https://chromium-review.googlesource.com/1150034Reviewed-by:
Gabriel Charette <gab@chromium.org> Reviewed-by:
proberge <proberge@chromium.org> Commit-Queue: proberge <proberge@chromium.org> Cr-Commit-Position: refs/heads/master@{#585055}
-
Lei Zhang authored
- Reduce number of parameters to DoComposite{Document,Page}ToPdf(). - Move ConvertContentInfoMap() into an anonymous namespace and remove unused parameter. - Change GenerateFrameGuid() so callers only pass a single parameter. Change-Id: I22d94f988ba64ba72a1fa9bea7190cf2b812b336 Reviewed-on: https://chromium-review.googlesource.com/1183022 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:Wei Li <weili@chromium.org> Cr-Commit-Position: refs/heads/master@{#585054}
-
Boris Sazonov authored
This CL changes ChromeUnifiedConsentClient to use kMetricsReportingEnabled pref to check whether UMA reporting is enabled, as IsMetricsAndCrashReportingEnabled always returns false on non-official builds, forcing unified consent to be off. Bug: 814728 Change-Id: Ie39ca8d23cdc1fbb757a5ec74c719092c758a1d6 Reviewed-on: https://chromium-review.googlesource.com/1183679Reviewed-by:
Thomas Tangl <tangltom@chromium.org> Reviewed-by:
Brian White <bcwhite@chromium.org> Commit-Queue: Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#585053}
-
Clark DuVall authored
We need to notify download progress even if report_raw_headers is not set. Bug: 875298 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I1074a50ca60cdbbb00cd265d83487abe55160732 Reviewed-on: https://chromium-review.googlesource.com/1184038Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Clark DuVall <cduvall@chromium.org> Cr-Commit-Position: refs/heads/master@{#585052}
-
Joel Einbinder authored
This roll contains fixes for TypeScript syntax highlighting Change-Id: Ibe60b3378fca642c259e95686f3659b765d0edf9 Reviewed-on: https://chromium-review.googlesource.com/1182680Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Commit-Queue: Joel Einbinder <einbinder@chromium.org> Cr-Commit-Position: refs/heads/master@{#585051}
-
src-internal-chromium-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/ec5364ee5d5a..2916d264903a Created with: gclient setdep -r src-internal@2916d264903a The AutoRoll server is located here: https://src-internal-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. BUG=chromium:b/112808120 TBR=mmoss@chromium.org Change-Id: I4e095ada11fb9a277d44d6688466176f2271cf9f Reviewed-on: https://chromium-review.googlesource.com/1184421Reviewed-by:
src-internal-chromium-autoroll <src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: src-internal-chromium-autoroll <src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#585050}
-
Helen Li authored
This is a reland of d184f073 The CL was speculatively reverted for an unrelated bug (876563) TBR=mmenke@chromium.org Original change's description: > Add NetLog events for cookie blocking by NetworkDelegate > > Cookies setting and getting can be blocked by a NetworkDelegate. > This CL adds NetLog events so they can aid in the investigation of cookies bugs. > > Bug: 875849 > Change-Id: Ia2a09b443fb1ebfe8ce9dde1617920264f6f24a7 > Reviewed-on: https://chromium-review.googlesource.com/1181244 > Reviewed-by: Matt Menke <mmenke@chromium.org> > Commit-Queue: Helen Li <xunjieli@chromium.org> > Cr-Commit-Position: refs/heads/master@{#584809} Bug: 875849 Change-Id: I19e285f078599084d53c9e68a8082ef43d86e067 Reviewed-on: https://chromium-review.googlesource.com/1185102Reviewed-by:
Helen Li <xunjieli@chromium.org> Commit-Queue: Helen Li <xunjieli@chromium.org> Cr-Commit-Position: refs/heads/master@{#585049}
-
Keishi Hattori authored
Removes SafePointScope and code related to copying the stack. Change-Id: Iabf5c7a892d680d1b16a0987bbc3cfc2ce3bc984 Reviewed-on: https://chromium-review.googlesource.com/1184596 Commit-Queue: Keishi Hattori <keishi@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#585048}
-
Jun Mukai authored
As described in the bug, ui::GestureRecognizer shouldn't be a singleton since Mash and browser process should refer to different instances. ui::GestureRecognizer is now a property of aura::Env. views::Widget now also has GetGestureRecognizer() to support MacViews since no aura::Env exists in Mac. chrome/browser/ui/aura/accessibility changes are necessary since this singleton object owns an aura::Window internally (AutomationManagerAura owns AxTreeSourceAura which owns AxRootObjWrapper which owns |alert_window_|) and deletion of a Window now refers to its Env through CleanupGestureState(). The change on AutomationManagerAura makes sure that this instance does not outlive aura::Env to prevent such references to deleted Env object implicitly. Bug: 872365 Test: trybots Change-Id: Ia617482d5aa6fd5482df4dd8af0039395c5bc3fb Reviewed-on: https://chromium-review.googlesource.com/1171838Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Jun Mukai <mukai@chromium.org> Cr-Commit-Position: refs/heads/master@{#585047}
-
Helen Li authored
TBR=morlovich@chromium.org Change-Id: I2952774687ead64152d7a1a8fd3d6a7fc5a5b639 Reviewed-on: https://chromium-review.googlesource.com/1183639 Commit-Queue: Helen Li <xunjieli@chromium.org> Reviewed-by:
Helen Li <xunjieli@chromium.org> Reviewed-by:
Maks Orlovich <morlovich@chromium.org> Cr-Commit-Position: refs/heads/master@{#585046}
-
Ben Wagner authored
These should have been removed in https://codereview.chromium.org/1847173002 e9b78323 when dwrite_font_platform_win_unittest.cc was deleted, but they were overlooked. Change-Id: I6a9531e831cbda26cb61ab74e3487b3dd21a049e Reviewed-on: https://chromium-review.googlesource.com/1183993Reviewed-by:
Mike Klein <mtklein@chromium.org> Commit-Queue: Ben Wagner <bungeman@chromium.org> Cr-Commit-Position: refs/heads/master@{#585045}
-
Vasilii Sukhanov authored
TBR=tedchoc@chromium.org Bug: 874039 Change-Id: I183677ed1399b8dcd6b94b87e9ae88851fa4441c Reviewed-on: https://chromium-review.googlesource.com/1181423 Commit-Queue: Vasilii Sukhanov <vasilii@chromium.org> Reviewed-by:
Fabio Tirelo <ftirelo@chromium.org> Reviewed-by:
Tommy Martino <tmartino@chromium.org> Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Cr-Commit-Position: refs/heads/master@{#585044}
-
Anna Offenwanger authored
Somehow an _ got removed that shouldn't have been. Bug: 876478 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:linux_vr;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Change-Id: I8f0368cfbc2b2f0e1180ecf9ab2f126d2c418394 Reviewed-on: https://chromium-review.googlesource.com/1183846Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Anna Offenwanger <offenwanger@chromium.org> Cr-Commit-Position: refs/heads/master@{#585043}
-
perfetto-chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/465d65ba9903..a4238afbd1d0 git log 465d65ba9903..a4238afbd1d0 --date=short --no-merges --format='%ad %ae %s' 2018-08-21 primiano@google.com UI: fix deploy script 2018-08-21 primiano@google.com Merge "UI: Rearchitect controllers and improve tracks performance" 2018-08-21 primiano@google.com TraceProcessor: improve error handling in presence of null columns Created with: gclient setdep -r src/third_party/perfetto@a4238afbd1d0 The AutoRoll server is located here: https://perfetto-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=perfetto-bugs@google.com Change-Id: Id509660d3b58ac2af980a5746fad285197a1ad5e Reviewed-on: https://chromium-review.googlesource.com/1184762Reviewed-by:
perfetto-chromium-autoroll <perfetto-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: perfetto-chromium-autoroll <perfetto-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#585042}
-
depot-tools-chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/85f5e7ccd1af..29361ca11fa3 git log 85f5e7ccd1af..29361ca11fa3 --date=short --no-merges --format='%ad %ae %s' 2018-08-22 cwallez@chromium.org Add standalone dawn gclient config 2018-08-21 recipe-roller@chromium.org Roll recipe dependencies (trivial). Created with: gclient setdep -r src/third_party/depot_tools@29361ca11fa3 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. BUG=chromium:875245 TBR=agable@chromium.org Change-Id: I03a614427f950472893d317d70dd2c59944750e4 Reviewed-on: https://chromium-review.googlesource.com/1184763Reviewed-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@{#585041}
-
Ramin Halavati authored
Braille IME preferences are not actual preferences and are never written/modified from an incognito window. So they are removed from incognito persistent whitelist. Bug: 861722 Change-Id: Id8ac77909c0927eebfdf6e0a2e9e5afce528c5d9 Reviewed-on: https://chromium-review.googlesource.com/1180891Reviewed-by:
David Tseng <dtseng@chromium.org> Commit-Queue: Ramin Halavati <rhalavati@chromium.org> Cr-Commit-Position: refs/heads/master@{#585040}
-