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

Side by Side Diff: chrome/common/pref_names.cc

Issue 1552743003: Add chrome.inputMethodPrivate.onImeMenuActivationChanged API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use LoadExtension for ImeMenuActivation test. Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 const char kLanguagePreloadEnginesSyncable[] = 499 const char kLanguagePreloadEnginesSyncable[] =
500 "settings.language.preload_engines_syncable"; 500 "settings.language.preload_engines_syncable";
501 501
502 // A string pref (comma-separated list) set to the extension IMEs to be enabled. 502 // A string pref (comma-separated list) set to the extension IMEs to be enabled.
503 const char kLanguageEnabledExtensionImes[] = 503 const char kLanguageEnabledExtensionImes[] =
504 "settings.language.enabled_extension_imes"; 504 "settings.language.enabled_extension_imes";
505 const char kLanguageEnabledExtensionImesSyncable[] = 505 const char kLanguageEnabledExtensionImesSyncable[] =
506 "settings.language.enabled_extension_imes_syncable"; 506 "settings.language.enabled_extension_imes_syncable";
507 507
508 // A boolean pref set to true if the IME menu is activated. 508 // A boolean pref set to true if the IME menu is activated.
509 const char kLangugaeImeMenuActivated[] = "settings.language.ime_menu_activated"; 509 const char kLanguageImeMenuActivated[] = "settings.language.ime_menu_activated";
510 510
511 // A boolean pref to indicate whether we still need to add the globally synced 511 // A boolean pref to indicate whether we still need to add the globally synced
512 // input methods. False after the initial post-OOBE sync. 512 // input methods. False after the initial post-OOBE sync.
513 const char kLanguageShouldMergeInputMethods[] = 513 const char kLanguageShouldMergeInputMethods[] =
514 "settings.language.merge_input_methods"; 514 "settings.language.merge_input_methods";
515 515
516 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and 516 // Integer prefs which determine how we remap modifier keys (e.g. swap Alt and
517 // Control.) Possible values for these prefs are 0-4. See ModifierKey enum in 517 // Control.) Possible values for these prefs are 0-4. See ModifierKey enum in
518 // src/chrome/browser/chromeos/input_method/xkeyboard.h 518 // src/chrome/browser/chromeos/input_method/xkeyboard.h
519 const char kLanguageRemapSearchKeyTo[] = 519 const char kLanguageRemapSearchKeyTo[] =
(...skipping 1651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2171 const char kMediaRouterEnableCloudServices[] = 2171 const char kMediaRouterEnableCloudServices[] =
2172 "media_router.cloudservices.enabled"; 2172 "media_router.cloudservices.enabled";
2173 #endif // defined(GOOGLE_CHROME_BUILD) 2173 #endif // defined(GOOGLE_CHROME_BUILD)
2174 // Whether or not the Media Router first run flow has been acknowledged by the 2174 // Whether or not the Media Router first run flow has been acknowledged by the
2175 // user. 2175 // user.
2176 const char kMediaRouterFirstRunFlowAcknowledged[] = 2176 const char kMediaRouterFirstRunFlowAcknowledged[] =
2177 "media_router.firstrunflow.acknowledged"; 2177 "media_router.firstrunflow.acknowledged";
2178 #endif 2178 #endif
2179 2179
2180 } // namespace prefs 2180 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698