- 10 Feb, 2018 7 commits
-
-
Pete Williamson authored
Adding a utility method for generating unique filenames for offline page based on title and url of the page. (Re-uploading a change by Romax with fixed merge conflicts) Bug: 757073 Change-Id: I03e8e5cc03a640de2abee8e6e903b6bdce53af24 TBR: dimich@chromium.org, dtrainor@chromium.org Change-Id: I03e8e5cc03a640de2abee8e6e903b6bdce53af24 Reviewed-on: https://chromium-review.googlesource.com/911837Reviewed-by:
Peter Williamson <petewil@chromium.org> Commit-Queue: Peter Williamson <petewil@chromium.org> Cr-Commit-Position: refs/heads/master@{#535898}
-
Xunran Ding authored
This just updates the internals of CacheStorage. GURL is still used in content/public/browser and storage/browser/quota. so there are still conversions Origin<->GURL conversions on those API boundaries. Bug: 598424 Change-Id: Ib2ada9245c3d77f9be33217380742e4c00a732af Reviewed-on: https://chromium-review.googlesource.com/897231Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Reviewed-by:
Joshua Bell <jsbell@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#535897}
-
Sylvain Defresne authored
The BVC may have a nil TabModel. Before https://crrev.com/c/867054 the iteration over the TabModel worked (as sending a message to nil is well defined in Objective-C) but after the refactor, this lead to Undefined Behaviour when dereferencing a null pointer. Add an explicit check that TabModel is non-nil, and early return if this is not the case to prevent the crash (the infobar will be presented later to the user in that case). Bug: 808319 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: Ibc6e603957da108554525ac218c9afaaabb6a62b Reviewed-on: https://chromium-review.googlesource.com/912508Reviewed-by:
Stepan Khapugin <stkhapugin@chromium.org> Cr-Commit-Position: refs/heads/master@{#535896}
-
W. James MacLean authored
The code removed in this CL is believed to be the root cause of the crash in the associated bug. The mechanism is this: when events are coalesced, some event types still expect all of the original events to be properly acked, and at present RenderWidgetTargeter doesn't implement this. The crash, in particular, is the result of touch events being acked in a way that the unique ids don't line up with the queue in TouchDispositionGestureFilter::OnTouchEventAck() because some of the ids are missing after being coalesced. At present we will only disable coalescing for touch and gesture events,but that's reasonable since in most cases we only everhit-test the initial TouchStart and everything else in the sequence latches to its target. Further, it's not obvious if there's a significant performance benefit to the coalescing these events, so for now we remove it. In any case, implementing proper acking of these events would result in a patch too big to merge back to M65. Bug: 807507 Change-Id: I50dbef4f16f4b451321564e1e0c9cfb352aafabd Reviewed-on: https://chromium-review.googlesource.com/905459 Commit-Queue: James MacLean <wjmaclean@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Reviewed-by:
Kevin McNee <mcnee@chromium.org> Cr-Commit-Position: refs/heads/master@{#535895}
-
Vasilii Sukhanov authored
When a tab is closed from the renderer via window.close(), the password bubble may still be show. When it closes PasswordFormManager may decided to upload some votes. ChromePasswordManagerClient still exists at this point but ContentAutofillDriverFactory can already be deleted. The code should check this condition. Bug: 807601 Change-Id: If75c1aa5759e07568340d2233b22cc159e8c687e Reviewed-on: https://chromium-review.googlesource.com/911770Reviewed-by:
Stepan Khapugin <stkhapugin@chromium.org> Commit-Queue: Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#535894}
-
Pete Williamson authored
This change will move the offline page to a public directory and inform the system download manager if any (for instance, on Android) of the location and type of the file. If both steps succeed, the offline page item will be written to the offline page model database. Bug: 758690 Change-Id: Iabba419903849892a947d80bd82c39123e1bc962 Reviewed-on: https://chromium-review.googlesource.com/896555 Commit-Queue: Peter Williamson <petewil@chromium.org> Reviewed-by:
Jian Li <jianli@chromium.org> Cr-Commit-Position: refs/heads/master@{#535893}
-
Tom Anderson authored
After bootstrapping gn, build.ninja has a reference that looks something like: command = ../../../../../../../../../../tmp/tmp9Pn0sv/gn --root=../.. -q gen . This reference will be broken when the OS removes the temporary directory. This CL regenerates the build files using the gn executable from the build directory. This on its own will update the reference to plain "gn", however we need the reference to be "./gn", because "gn" might not exist in the PATH, or would point to an old one from depot_tools. BUG=808829 R=dpranke Change-Id: I1b156a6af081a35ded152946af13a117563b8c1a Reviewed-on: https://chromium-review.googlesource.com/905793 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Brett Wilson <brettw@chromium.org> Cr-Commit-Position: refs/heads/master@{#535892}
-
- 09 Feb, 2018 33 commits
-
-
David Grogan authored
Blink's recent attempt to implement relative positioning for table rows broke position of absolute position descendents. This is a test to ensure it doesn't happen again. Bug: 417223 Change-Id: I9c8d0d54c48d4f4426d3ad71dff562b67396f68e Reviewed-on: https://chromium-review.googlesource.com/907754 Commit-Queue: David Grogan <dgrogan@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#535891}
-
Kurt Horimoto authored
This is patch 1 of a 3-way patch. Bug: 798064 Cq-Include-Trybots: master.tryserver.chromium.mac:ios-simulator-cronet;master.tryserver.chromium.mac:ios-simulator-full-configs Change-Id: I2df80fc63af54f71a167dc986da5527b62c88016 Reviewed-on: https://chromium-review.googlesource.com/912238Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: Kurt Horimoto <kkhorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#535890}
-
Evan Stade authored
- don't create a NotificationUIManager if there's no message center (for now there's always a MessageCenter in the browser process, but that will change, and in the meantime some unit tests can now stop instantiating the MessageCenter) - remove BrowserProcess::message_center(), inline the singleton getter Bug: 578868 Change-Id: Ifdfa7524bef73fc2cf93fbc99ba624edfe8d9027 Reviewed-on: https://chromium-review.googlesource.com/896703Reviewed-by:
Peter Beverloo <peter@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Evan Stade <estade@chromium.org> Cr-Commit-Position: refs/heads/master@{#535889}
-
wutao authored
This cl introduces the bubble view to highlight keys in the shortcut of Keyboard Shortcut Viewer (KSV). Bug: 768932 Test: Manually test the bubble views. Change-Id: I3b223465f41ee721920f263c25d157cc4114eeb0 Reviewed-on: https://chromium-review.googlesource.com/902691Reviewed-by:
enne <enne@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
Tao Wu <wutao@chromium.org> Reviewed-by:
Qiang Xu <warx@google.com> Commit-Queue: Tao Wu <wutao@chromium.org> Cr-Commit-Position: refs/heads/master@{#535888}
-
Jacob Dufault authored
Bug: 784495 Change-Id: Ia9fe03dcca374d08e708bd47c91c8eeb8484880c Reviewed-on: https://chromium-review.googlesource.com/910034Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Achuith Bhandarkar <achuith@chromium.org> Commit-Queue: Jacob Dufault <jdufault@chromium.org> Cr-Commit-Position: refs/heads/master@{#535887}
-
Jialiu Lin authored
Before this CL, if we identified an incomplete referrer chain with only 1 entry, then we append 5 recent navigations to it. Though the totoal number of entries is now 6, but one recent navigation is in fact a duplicates of the identified referrer entry. This CL dedups the final result by only appending navigation events that happened before the last referrer chain entry. Bug: 780532 Change-Id: I1c5d3c479f49bfb919f1ec78169fa2cf304f9e64 Reviewed-on: https://chromium-review.googlesource.com/912268Reviewed-by:
Varun Khaneja <vakh@chromium.org> Commit-Queue: Jialiu Lin <jialiul@chromium.org> Cr-Commit-Position: refs/heads/master@{#535886}
-
https://chromium.googlesource.com/catapult.git/+log/9055bd85609b..2b59889bc5fe $ git log 9055bd856..2b59889bc --date=short --no-merges --format='%ad %ae %s' 2018-02-09 simonhatch Dashboard - Compress histogram data by default. 2018-02-09 simonhatch Pinpoint - Add a re-run button. 2018-02-08 tiborg [vr] Update frameCycleDuration metric 2018-02-09 dtu [pinpoint] Change thread pool back to separate threads. 2018-02-08 dtu [pinpoint] Use Change info from the Job dict on the Job page. 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: I0473f4f2865510f4108f62adfb3bd15b28b900bd Reviewed-on: https://chromium-review.googlesource.com/912369Reviewed-by:
catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#535885}
-
Dave Tapuska authored
Inputmode is still an experimental web platform feature but allow inputmode="none" to allow the keyboard to be hidden and treat it as not being editable yet the focus is still retained to be on an editable field. BUG=642800 Change-Id: I176179b94bc11e6bd7193551b8f76ee67f3f3e5b Reviewed-on: https://chromium-review.googlesource.com/850945Reviewed-by:
Changwan Ryu <changwan@chromium.org> Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Commit-Queue: Dave Tapuska <dtapuska@chromium.org> Cr-Commit-Position: refs/heads/master@{#535884}
-
Robert Kroeger authored
In https://chromium-review.googlesource.com/861749, I changed ozone/drm intialization semantics to make ozone/drm more flexible about setup from WS or GpuProcessHost. I missed updating one call site in media. Added it here. BUG=808962 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: I22982b2d3019638083fb21858881a29681ee4559 Reviewed-on: https://chromium-review.googlesource.com/912405Reviewed-by:
Pawel Osciak <posciak@chromium.org> Commit-Queue: Robert Kroeger <rjkroege@chromium.org> Cr-Commit-Position: refs/heads/master@{#535883}
-
dpapad authored
Bug: 738611 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Iad4686cc3f09acb94834596be741d1b2d2e39bac Reviewed-on: https://chromium-review.googlesource.com/910313Reviewed-by:
Scott Chen <scottchen@chromium.org> Commit-Queue: Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#535882}
-
Tibor Goldschwendt authored
Bug: 788786 Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_vr;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel Change-Id: Ibc2561c3301060fa8a05289bfd581d7492962957 Reviewed-on: https://chromium-review.googlesource.com/909716Reviewed-by:
Ian Vollick <vollick@chromium.org> Commit-Queue: Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#535881}
-
xlou authored
This flag will be used for development / testing of the N-up printing feature. The plan is to have something available for testing in M67 behind the flag, and to use the flag to roll out changes when it is ready to launch. Bug: 775999 Change-Id: I2282ca057eb874c45068bde77259f82f5b10d5de Reviewed-on: https://chromium-review.googlesource.com/910310 Commit-Queue: Shirleen Lou <xlou@chromium.org> Reviewed-by:
Sean Kau <skau@chromium.org> Reviewed-by:
Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#535880}
-
Chris Morin authored
https://chromium.googlesource.com/chromiumos/platform/system_api.git/+log/03017732129d..5ed4b3d3c6ee $ git log 030177321..5ed4b3d3c --date=short --no-merges --format='%ad %ae %s' 2018-02-03 cmtm split StartArcInstance dbus method 2018-02-05 ljusten authpolicy: Rename an error enum 2018-02-06 smbarber vm_concierge: remove StartLxd in favor of a StartVm option 2018-01-31 allenvic smbprovider: Add CreateDirectory protobuf 2018-02-02 sonnysasaka bluetooth: Add bluez methods for pause/unpause discovery 2018-01-30 smbarber vm_concierge: add CreateDiskIamge 2018-01-25 smbarber vm_concierge: add GetVmInfo and StartLxd 2018-01-31 derat system_api: Delete unused termination-message-file constant. 2018-01-25 ejcaruso system_api: remove MountPublic and AsyncMountPublic Created with: roll-dep src/third_party/cros_system_api Change-Id: Iba3d434ee18d91cb47008eaf823ba6306f66ba1b Reviewed-on: https://chromium-review.googlesource.com/910788Reviewed-by:
Yusuke Sato <yusukes@chromium.org> Commit-Queue: Christopher Morin <cmtm@google.com> Cr-Commit-Position: refs/heads/master@{#535879}
-
Mike Frysinger authored
Add a new "vmshell" process which runs /usr/bin/vsh and allows people to pass in command line arguments (which it will validate). Bug: 790878 Change-Id: I253614e9f2b8c7fb5fa5edafc73701a8dc8c0ad7 Reviewed-on: https://chromium-review.googlesource.com/803941 Commit-Queue: Mike Frysinger <vapier@chromium.org> Reviewed-by:
Toni Barzic <tbarzic@chromium.org> Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Cr-Commit-Position: refs/heads/master@{#535878}
-
Henrique Nakashima authored
Previously called GetNamedDestinationPage(), the new version returns the view and view parameters in a PDFEngine::NamedDestination struct. Bug: 55776,535978,748852 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I5410ed66715e3c579e5daa89231cf89dbeaf83e9 Reviewed-on: https://chromium-review.googlesource.com/910208Reviewed-by:
Lei Zhang <thestig@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Cr-Commit-Position: refs/heads/master@{#535877}
-
Wenzhao Zang authored
Deletes the dead code after wallpaper refactoring. TBR=jamescook@chromium.org, xdai@chromium.org Bug: 810535 Change-Id: I7ef7124c825131810b13cf6e50aa93971fec5b4c Reviewed-on: https://chromium-review.googlesource.com/909849 Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#535876}
-
Toni Barzic authored
Adds missing calls to shutdown DBusThreadManager in ash unittests that iniitalize DBusThreadManager during their set up. BUG=None Change-Id: I24ccd3b4fa8c5d15af171098517bee43bfad9052 Reviewed-on: https://chromium-review.googlesource.com/912431Reviewed-by:
James Cook <jamescook@chromium.org> Commit-Queue: Toni Barzic <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#535875}
-
Miguel Casas authored
This CL moves the pepper-specific files from //content/renderer/media/ to //content/renderer/media/pepper. It also updates the header guards (as tools/git/mass-rename.py dixit). No new code whatsoever -- just moving things around. Instructions used: $ git mv content/renderer/media/video_track_to_pepper* content/renderer/media/pepper $ git mv content/renderer/media/pepper_to_video_track_* content/renderer/media/pepper $ tools/git/mass-rename.py Bug: 739232 Change-Id: I327c5bbf8604c52db6a6659828b1bd69d43c273f Reviewed-on: https://chromium-review.googlesource.com/912248Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Emircan Uysaler <emircan@chromium.org> Reviewed-by:
Yuri Wiitala <miu@chromium.org> Commit-Queue: Miguel Casas <mcasas@chromium.org> Cr-Commit-Position: refs/heads/master@{#535874}
-
Weiliang Chen authored
Root should only has damage when there is visible damage and has nothing to do with whether there is contributing layers. Damage with 0 quad is valid case when only drawn layer just got removed. R=danakj@chromium.org Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel Change-Id: I276e0edebfcb4d3c813c9f65541c554ecf7ba7e5 Reviewed-on: https://chromium-review.googlesource.com/899947 Commit-Queue: weiliangc <weiliangc@chromium.org> Reviewed-by:
danakj <danakj@chromium.org> Cr-Commit-Position: refs/heads/master@{#535873}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 737d2230. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/12200 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: jsbell@chromium.org: external/wpt/service-workers/cache-storage TBR=leon.han@intel.com No-Export: true Change-Id: I4660f7e5de67724f33ad77c8a7a2d5d17528c34d Reviewed-on: https://chromium-review.googlesource.com/911951 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#535872}
-
Scott Violet authored
This is a precursor for: https://chromium-review.googlesource.com/c/chromium/src/+/912395 Git doesn't support copy, so this all looks new. The files here are verbatim copies from services/ui/ws. BUG=none TEST=none TBR=msw@chromium.org,tsepez@chromium.org Change-Id: Ie39bffcea0d9a7c6e112cd6a7b6b36fe46cfce2c Reviewed-on: https://chromium-review.googlesource.com/911824Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Michael Wasserman <msw@chromium.org> Commit-Queue: Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#535871}
-
Joel Einbinder authored
This adds isTopFrame as opposed to isMainFrame, and fixes some bugs associated with the distinction Change-Id: Ie58622859bf41169d79ee729efe2f5abe86ebeb5 Reviewed-on: https://chromium-review.googlesource.com/909832Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Commit-Queue: Pavel Feldman <pfeldman@chromium.org> Cr-Commit-Position: refs/heads/master@{#535870}
-
Wenzhao Zang authored
The current (old) wallpaper picker saves all the wallpaper urls in local storage (in the manifest file). We don't have to do this for the new wallpaper picker because it's straightforward to directly request a new random wallpaper real-time from the server, and it will avoid the cases that the urls may become invalid. Call wallpaperManager.toggleSurpriseMe_() from the dev tool. Also consider adjust the timer for faster wallpaper change. And the current wallpaper picker should not have behavior changes Bug: 810169 Test: Use switch 'new-wallpaper-picker'. Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I09416a60863794ddecb5d1d2291bd5660241b7a7 Reviewed-on: https://chromium-review.googlesource.com/907697Reviewed-by:Xiaoqian Dai <xdai@chromium.org> Commit-Queue: Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#535869}
-
Ben Goodger authored
This is part of an effort to eliminate manifest overlays. (See bug). This interface actually needs to be hooked up in some utility processes & renderers. At face value it seems like something like this could be part of the service manager API but it turns out to be very blink/v8 specific. Ultimately it should probably be exposed by the blink & proxy resolver services. Due to the way the task manager obtains these APIs currently moving to content makes the most sense. http://crbug.com/810851 Change-Id: Ic7948d41487120d3207e96b866645854f7405b92 Reviewed-on: https://chromium-review.googlesource.com/887429Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Commit-Queue: Ben Goodger <ben@chromium.org> Cr-Commit-Position: refs/heads/master@{#535868}
-
Scott Chen authored
Also added a closure @typedef that allows configs passed to showAt to optionally leave out top/left. Bug: 810104 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: Ic5ffc3338995cd57b19f0e1373e8753239e68519 Reviewed-on: https://chromium-review.googlesource.com/907854 Commit-Queue: Scott Chen <scottchen@chromium.org> Reviewed-by:
calamity <calamity@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#535867}
-
James Cook authored
Filter it out of mash_browser_tests on the mojo FYI bot. It's flaky. TBR=mcnee@chromium.org Bug: 810935 Test: mash_browser_tests Change-Id: I3ab4b650eb020f93105b90fc863b5e0125d487ba Reviewed-on: https://chromium-review.googlesource.com/912105Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#535866}
-
Megan Jablonski authored
This reverts commit d0bdc3d3. Reason for revert: Causing buildbot failures https://uberchromegw.corp.google.com/i/chromium.webkit/builders/WebKit%20Mac10.11 https://uberchromegw.corp.google.com/i/chromium.webkit/builders/WebKit%20Mac10.11/builds/28761 Original change's description: > Force backgrounds to fill to the border > > Background geometry calculations snap the background painting > differently to the way borders snap. This patch forces the background > to match the border whenever possible. > > In addition to the new test, our existing zoomed SVG-as-image tests > also improve (they previously did not fill to their border). Some sprite > background tests regress a little. They will be fixed by other > forthcoming changes to background painting. > > Also factor the positioning area computation out of the primary > Calculate method. > > R=fmalita@chromium.org > BUG=716174 > > Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 > Change-Id: I42dfc3773655bf14640f67ba90b39e46b219f9ef > Reviewed-on: https://chromium-review.googlesource.com/909450 > Commit-Queue: Stephen Chenney <schenney@chromium.org> > Reviewed-by: Florin Malita <fmalita@chromium.org> > Cr-Commit-Position: refs/heads/master@{#535823} TBR=fmalita@chromium.org,schenney@chromium.org Change-Id: Ie879480be916dd62ab70644ce827e556af65e873 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 716174 Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Reviewed-on: https://chromium-review.googlesource.com/911991Reviewed-by:
Megan Jablonski <megjablon@chromium.org> Commit-Queue: Megan Jablonski <megjablon@chromium.org> Cr-Commit-Position: refs/heads/master@{#535865}
-
Lei Zhang authored
Change-Id: Idda3f89e1f6342b3d07cada6a64bce22ff827a87 Reviewed-on: https://chromium-review.googlesource.com/910691Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#535864}
-
Matt Reynolds authored
The Nintendo Switch Pro Controller supports Bluetooth and USB modes, but defaults to Bluetooth and requires a vendor-specific initialization sequence to read controller inputs over USB. This CL adds the logic to initialize the Pro controller for either Bluetooth or USB depending on how it is connected. It also adds mappers for both modes, and renormalizes axis values so they are centered and cover the full analog range. BUG=801717 Change-Id: I3ca031dcffc6a7e6d5cba2e378fe293de78b5309 Reviewed-on: https://chromium-review.googlesource.com/908048Reviewed-by:
Brandon Jones <bajones@chromium.org> Commit-Queue: Matt Reynolds <mattreynolds@chromium.org> Cr-Commit-Position: refs/heads/master@{#535863}
-
Benjamin Pastene authored
TBR=jbudorick@chromium.org Bug: 810610 Change-Id: I2cdafdec9eef1b646e51f3984243f38d345d2d92 Reviewed-on: https://chromium-review.googlesource.com/910651Reviewed-by:
Benjamin Pastene <bpastene@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Benjamin Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#535862}
-
Bernhard Bauer authored
Bug: b/73149793 Change-Id: I9ea2bd9d8bef021b2d36d4eb49d2a5bf74da2f8e Reviewed-on: https://chromium-review.googlesource.com/911669Reviewed-by:
Yusuf Ozuysal <yusufo@chromium.org> Commit-Queue: Bernhard Bauer <bauerb@chromium.org> Cr-Commit-Position: refs/heads/master@{#535861}
-
Dmitry Gozman authored
- Do not clear console on iframe navigation; - Do not print "Navigated to ..." message on iframe navigation; - Do not reset all UIMessages on iframe navigation. Bug: 809970 Change-Id: I591872eae4d4276a9362180a53d7a6dce2dd56d5 Reviewed-on: https://chromium-review.googlesource.com/909864 Commit-Queue: Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Cr-Commit-Position: refs/heads/master@{#535860}
-
Mike Frysinger authored
Extend the terminalPrivate.openTerminalProcess JS API to take an optional array of arguments to the program. For crosh, we'll not allow this so people can't pass random flags to it. Refactor process proxy classes to take a base::CommandLine directly instead of just an argv[0]. Bug: 790878 Change-Id: I598e9a02e292789eb4bd71998bed6d9e6f92e717 Reviewed-on: https://chromium-review.googlesource.com/803940 Commit-Queue: Mike Frysinger <vapier@chromium.org> Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Reviewed-by:
Toni Barzic <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#535859}
-