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

Unified 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: Fix copyright notice. Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: ui/keyboard/keyboard_switches.h
diff --git a/ui/keyboard/keyboard_switches.h b/ui/keyboard/keyboard_switches.h
index 04d4e73702450a7e1155dea3423f601ad55ddae7..bc0ae1b05279a9de001c74dc42ed4b1ba9dc6250 100644
--- a/ui/keyboard/keyboard_switches.h
+++ b/ui/keyboard/keyboard_switches.h
@@ -10,12 +10,21 @@
namespace keyboard {
namespace switches {
+// Disabled overscrolling of web content when the virtual keyboard is displayed.
+// If disabled, the work area is resized to restrict windows from overlapping
+// with the keybaord area.
+KEYBOARD_EXPORT extern const char kDisableVirtualKeyboardOverscroll[];
+
// Enables the swipe selection feature on the virtual keyboard.
KEYBOARD_EXPORT extern const char kEnableSwipeSelection[];
// Enables the virtual keyboard.
KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[];
+// Enable overscrolling of web content when the virtual keyboard is displayed
+// to provide access to content that would otherwise be occluded.
+KEYBOARD_EXPORT extern const char kEnableVirtualKeyboardOverscroll[];
+
// Enables the keyboard usability experiment. This is an experimental mode for
// testing the usability of various experimental keyboard layouts.
KEYBOARD_EXPORT extern const char kKeyboardUsabilityExperiment[];

Powered by Google App Engine
This is Rietveld 408576698