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

Unified Diff: chrome/browser/extensions/api/input/input.cc

Issue 313983002: Add flag to enable experimental features for input view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Doc tweaks. Created 6 years, 6 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/common/extensions/api/virtual_keyboard_private.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/input/input.cc
diff --git a/chrome/browser/extensions/api/input/input.cc b/chrome/browser/extensions/api/input/input.cc
index 657bad954bf4903e7d3844e420151c0488de0f0e..847072a877dcb433c058daa86821e4dd00217ab8 100644
--- a/chrome/browser/extensions/api/input/input.cc
+++ b/chrome/browser/extensions/api/input/input.cc
@@ -152,6 +152,8 @@ bool VirtualKeyboardPrivateGetKeyboardConfigFunction::RunSync() {
base::DictionaryValue* results = new base::DictionaryValue();
results->SetString("layout", keyboard::GetKeyboardLayout());
results->SetBoolean("a11ymode", keyboard::GetAccessibilityKeyboardEnabled());
+ results->SetBoolean("experimental",
+ keyboard::IsExperimentalInputViewEnabled());
SetResult(results);
return true;
#else
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/common/extensions/api/virtual_keyboard_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698