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

Unified Diff: chrome/browser/about_flags.cc

Issue 178343005: [IME] migrate the xkb ID to extension based xkb ID. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit tests failures for when the flag is true and false. Created 6 years, 10 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 cf5fcf4c1b40f028ed75abc33c059eaf19512bfc..145cb732a3e168cc6bd4c499b5fc011a3b0be582 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1966,6 +1966,15 @@ const Experiment kExperiments[] = {
SINGLE_VALUE_TYPE(app_list::switches::kEnableExperimentalAppList)
},
#endif
+#if defined(OS_CHROMEOS)
+ {
+ "migrate-xkb",
+ IDS_FLAGS_MIGRATE_XKB_NAME,
+ IDS_FLAGS_MIGRATE_XKB_DESCRIPTION,
+ kOsCrOS,
+ SINGLE_VALUE_TYPE(chromeos::switches::kMigrateXkb)
Seigo Nonaka 2014/02/28 06:14:07 To use extension wrapped keyboard layouts by defau
Shu Chen 2014/02/28 07:32:50 I've removed the runtime flag, and use a hard code
+ },
+#endif
};
const Experiment* experiments = kExperiments;

Powered by Google App Engine
This is Rietveld 408576698