summaryrefslogtreecommitdiffstats
path: root/ash/keyboard_overlay
Commit message (Collapse)AuthorAgeFilesLines
* Skip mulitple-display tests on win8oshima@chromium.org2013-06-121-0/+3
| | | | | | | | | | Re-enable tests that should pass on win7. BUG=247427 Review URL: https://chromiumcodereview.appspot.com/16539005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205846 0039d316-1c4b-4281-b951-d872f2087c98
* Use a direct include of utf_string_conversions.h in android_webview/, apps/, ↵avi@chromium.org2013-06-073-3/+3
| | | | | | | | | | | ash/, base/. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/15735027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204874 0039d316-1c4b-4281-b951-d872f2087c98
* Update src/ash/ for renames and moves in basebrettw@chromium.org2013-04-112-5/+5
| | | | | | | | | | | Renames string16 -> base::string16 and base/string_number_conversions.h -> base/strings/string_number_conversions.h BUG= Review URL: https://codereview.chromium.org/13856005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193561 0039d316-1c4b-4281-b951-d872f2087c98
* Add unit test for showing the keyboard overlay widgetjamescook@chromium.org2013-01-263-16/+63
| | | | | | | | | | | | | | Also refactored KeyboardOverlayDelegate so I can pass a NULL WebDialogView to the Show() method, as Ash unit tests do not have the content and chrome components available to allow a WebDialog to instantiate a WebContents. BUG=172176 TEST=added ash_unittests KeyboardOverlayDelegateTest Review URL: https://chromiumcodereview.appspot.com/12089004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179071 0039d316-1c4b-4281-b951-d872f2087c98
* Fix keyboard overlay crash on Chrome OS.hshi@chromium.org2013-01-251-0/+2
| | | | | | | | | | | | | | | | | Widget::InitParams.context is not allowed to be NULL when using aura, so initialize it to be the primary root window. Note: there used to be a NULL check for params.context but this got removed by https://codereview.chromium.org/11829040. Now it is assumed that one of the params.context or params.parent must be valid. BUG=172058 TEST=manual, CQ Review URL: https://chromiumcodereview.appspot.com/12047105 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178810 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a leak in KeyboardOverlayViewTest.OpenAcceleratorsClose.mazda@chromium.org2013-01-071-3/+4
| | | | | | | | BUG=167165 Review URL: https://codereview.chromium.org/11648037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@175400 0039d316-1c4b-4281-b951-d872f2087c98
* Make VKEY_F14 and VKEY_HELP close keyboard overlay.mazda@chromium.org2012-12-203-5/+103
| | | | | | | | | | | Also add tests to verify that the shortcuts that open the keyboard overlay close it. BUG=chrome-os-partner:16067 Review URL: https://chromiumcodereview.appspot.com/11636037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174220 0039d316-1c4b-4281-b951-d872f2087c98
* Makes gfx::Screen an instance, rather than a collection of static methods.scottmg@chromium.org2012-10-124-4/+21
| | | | | | | | | | | | | | This is in support of supporting separate Screen implementations on Aura for desktop and metro on Windows. Some callsites are not yet correct, and noted with a reference to the http://crbug.com/133312. As-is those sites will behave the same as before this patch, but may not be correct once desktop/metro can run simultaneously. BUG=133312 Review URL: https://chromiumcodereview.appspot.com/11030017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161644 0039d316-1c4b-4281-b951-d872f2087c98
* events: Move some files into ui/base/events/sadrul@chromium.org2012-09-041-1/+1
| | | | | | | | | BUG=none TBR=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10917075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154817 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore the caps lock state for closing the keyboard overlay.mazda@chromium.org2012-08-091-2/+4
| | | | | | | | | | BUG=141215 TEST=Turn caps lock on, press Ctrl+Alt+/, press escape, and check the keyboard overlay is closed. Review URL: https://chromiumcodereview.appspot.com/10826211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150703 0039d316-1c4b-4281-b951-d872f2087c98
* Convert Aura to use ui::Event.ben@chromium.org2012-08-082-2/+3
| | | | | | | | http://crbug.com/125937 TEST=existing Review URL: https://chromiumcodereview.appspot.com/10827145 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150587 0039d316-1c4b-4281-b951-d872f2087c98
* Make accelerators not to work when the keyboard overlay is shown.mazda@chromium.org2012-07-262-9/+45
| | | | | | | | | | | | | - Refactor PartialScreenshotEventFiler so that it can be reused, and renamed it to OverlayEventFilter - Use OverlayEventFilter for the keyboard overlay BUG=129834 TEST=Manually check accelerators do not work when the keyboard overlay. Review URL: https://chromiumcodereview.appspot.com/10825026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148504 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Revert 148383 - Move the keyboard overlay view to ash."mazda@chromium.org2012-07-254-0/+293
| | | | | | | | | | | | | | The original CL broke win_aura, which is fixed in this CL. This reverts commit b36e66174d685a4195d7cc934d978086e033a8c4. TBR=ben@chromium.org BUG=124222 TEST=None Review URL: https://chromiumcodereview.appspot.com/10824023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148428 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 148383 - Move the keyboard overlay view to ash.rch@chromium.org2012-07-254-293/+0
| | | | | | | | | | | | | | | This change introduces an issue when Shift+Alt is pressed (http://code.google.com/p/chromium/issues/detail?id=131159). I'll fix it shortly together with the more general issue (http://code.google.com/p/chromium/issues/detail?id=129834). BUG=124222 TEST=None Review URL: https://chromiumcodereview.appspot.com/10829003 TBR=mazda@chromium.org Review URL: https://chromiumcodereview.appspot.com/10823017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148385 0039d316-1c4b-4281-b951-d872f2087c98
* Move the keyboard overlay view to ash.mazda@chromium.org2012-07-254-0/+293
This change introduces an issue when Shift+Alt is pressed (http://code.google.com/p/chromium/issues/detail?id=131159). I'll fix it shortly together with the more general issue (http://code.google.com/p/chromium/issues/detail?id=129834). BUG=124222 TEST=None Review URL: https://chromiumcodereview.appspot.com/10829003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148383 0039d316-1c4b-4281-b951-d872f2087c98