diff options
author | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 00:52:58 +0000 |
---|---|---|
committer | danakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 00:52:58 +0000 |
commit | 750508d57a355c3f65ae61af4ae527bb9fcf4046 (patch) | |
tree | 4fb724af36898a7ea3077cadea3c06b5822a8488 /ash/shell_delegate.h | |
parent | 91305c8cc059552839b57ddeb77f075b97629a7a (diff) | |
download | chromium_src-750508d57a355c3f65ae61af4ae527bb9fcf4046.zip chromium_src-750508d57a355c3f65ae61af4ae527bb9fcf4046.tar.gz chromium_src-750508d57a355c3f65ae61af4ae527bb9fcf4046.tar.bz2 |
Enable Search-key modifiers for extended key shortcuts.
We use the Search-key as a modifier to disable existing shortcuts that
do not use the Search key. So Alt+Backspace still generates a Delete, but
Search+Alt+Backspace generates Alt+Backspace. And, Search+Backspace will
also generate Delete.
Search acts as a modifier for accessing all of the extended keys: Home,
End, Delete, Page up, Page down, Insert.
This removes the command line flag entirely, making everything work
in a way that does not need a flag or a preference option.
Tests:
unit_tests:EventRewriterTest.TestRewriteExtendedKeys
unit_tests:EventRewriterTest.TestRewriteFunctionKeys
unit_tests:EventRewriterTest.TestRewriteExtendedKeysWithSearchRemapped
BUG=162268
NOTRY=true
Review URL: https://codereview.chromium.org/11578044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173607 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell_delegate.h')
-rw-r--r-- | ash/shell_delegate.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h index e6fc43f..bdd3958 100644 --- a/ash/shell_delegate.h +++ b/ash/shell_delegate.h @@ -216,10 +216,6 @@ class ASH_EXPORT ShellDelegate { // Creates the stacking client. Shell takes ownership of the object. virtual aura::client::StackingClient* CreateStackingClient() = 0; - // True if the user's preferences have the Search key acting as a Function key - // modifier for accessing extended keyboard shortcuts. - virtual bool IsSearchKeyActingAsFunctionKey() const = 0; - // Creates a root window host factory. Shell takes ownership of the returned // value. virtual RootWindowHostFactory* CreateRootWindowHostFactory() = 0; |