Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: ui/keyboard/keyboard_switches.h

Issue 195793004: Implement overscroll support for the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge ToT Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/keyboard/keyboard_controller.cc ('k') | ui/keyboard/keyboard_switches.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_KEYBOARD_KEYBOARD_SWITCHES_H_ 5 #ifndef UI_KEYBOARD_KEYBOARD_SWITCHES_H_
6 #define UI_KEYBOARD_KEYBOARD_SWITCHES_H_ 6 #define UI_KEYBOARD_KEYBOARD_SWITCHES_H_
7 7
8 #include "ui/keyboard/keyboard_export.h" 8 #include "ui/keyboard/keyboard_export.h"
9 9
10 namespace keyboard { 10 namespace keyboard {
11 namespace switches { 11 namespace switches {
12 12
13 // Enables the swipe selection feature on the virtual keyboard. 13 // Enables the swipe selection feature on the virtual keyboard.
14 KEYBOARD_EXPORT extern const char kEnableSwipeSelection[]; 14 KEYBOARD_EXPORT extern const char kEnableSwipeSelection[];
15 15
16 // Disables IME extension APIs from overriding the URL for specifying the 16 // Disables IME extension APIs from overriding the URL for specifying the
17 // contents of the virtual keyboard container. 17 // contents of the virtual keyboard container.
18 KEYBOARD_EXPORT extern const char kDisableInputView[]; 18 KEYBOARD_EXPORT extern const char kDisableInputView[];
19 19
20 // Enables an IME extension API to set a URL for specifying the contents 20 // Enables an IME extension API to set a URL for specifying the contents
21 // of the virtual keyboard container. 21 // of the virtual keyboard container.
22 KEYBOARD_EXPORT extern const char kEnableInputView[]; 22 KEYBOARD_EXPORT extern const char kEnableInputView[];
23 23
24 // Enables the virtual keyboard. 24 // Enables the virtual keyboard.
25 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[]; 25 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[];
26 26
27 // Disabled overscrolling of web content when the virtual keyboard is displayed.
28 // If disabled, the work area is resized to restrict windows from overlapping
29 // with the keybaord area.
30 KEYBOARD_EXPORT extern const char kDisableVirtualKeyboardOverscroll[];
31
32 // Enable overscrolling of web content when the virtual keyboard is displayed
33 // to provide access to content that would otherwise be occluded.
34 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboardOverscroll[];
35
27 // Enables the keyboard usability experiment. This is an experimental mode for 36 // Enables the keyboard usability experiment. This is an experimental mode for
28 // testing the usability of various experimental keyboard layouts. 37 // testing the usability of various experimental keyboard layouts.
29 KEYBOARD_EXPORT extern const char kKeyboardUsabilityExperiment[]; 38 KEYBOARD_EXPORT extern const char kKeyboardUsabilityExperiment[];
30 39
31 } // namespace switches 40 } // namespace switches
32 } // namespace keyboard 41 } // namespace keyboard
33 42
34 #endif // UI_KEYBOARD_KEYBOARD_SWITCHES_H_ 43 #endif // UI_KEYBOARD_KEYBOARD_SWITCHES_H_
OLDNEW
« no previous file with comments | « ui/keyboard/keyboard_controller.cc ('k') | ui/keyboard/keyboard_switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698