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

Unified Diff: chrome/browser/about_flags.cc

Issue 13164002: Create and show the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready to go Created 7 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: chrome/browser/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index 67e566c1f68231220ac099c9c44ca421f8bd3cc2..7e18bcaf0a24c99511d484ba4297a743671ee38f 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -35,6 +35,7 @@
#include "ui/base/ui_base_switches.h"
#include "ui/gfx/switches.h"
#include "ui/gl/gl_switches.h"
+#include "ui/keyboard/keyboard_switches.h"
#include "ui/surface/surface_switches.h"
#if defined(ENABLE_MESSAGE_CENTER)
@@ -1263,6 +1264,15 @@ const Experiment kExperiments[] = {
SINGLE_VALUE_TYPE(switches::kEnableGoogleNowIntegration)
},
#endif
+#if defined(OS_CHROMEOS)
sadrul 2013/04/04 22:08:25 Should this be USE_ASH?
bryeung 2013/04/05 12:29:38 I've restricted it to kOsCrOS below. Should I all
+ {
+ "enable-virtual-keyboard",
+ IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_NAME,
+ IDS_FLAGS_ENABLE_VIRTUAL_KEYBOARD_DESCRIPTION,
+ kOsCrOS,
+ SINGLE_VALUE_TYPE(keyboard::switches::kEnableVirtualKeyboard)
+ },
+#endif
};
const Experiment* experiments = kExperiments;

Powered by Google App Engine
This is Rietveld 408576698