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

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

Issue 18856014: We should switch the keyboard layout to the layout the user set according to (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix MockInputMethodManager build. Created 7 years, 5 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/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 2485 matching lines...) Expand 10 before | Expand all | Expand 10 after
2496 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; 2496 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping";
2497 2497
2498 // How often the bubble has been shown. 2498 // How often the bubble has been shown.
2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2500 2500
2501 // A string pref for storing the salt used to compute the pepper device ID. 2501 // A string pref for storing the salt used to compute the pepper device ID.
2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2502 const char kDRMSalt[] = "settings.privacy.drm_salt";
2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2503 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2504 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2505 2505
2506 #if defined(OS_CHROMEOS)
2507 // Dictionary of per-user Least Recently Used input method
2508 // (used at login screen)
Mattias Nissler (ping if slow) 2013/07/11 10:05:49 nit: Missing period, not using the full line width
Alexander Alekseev 2013/07/12 20:10:49 Done.
2509 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod";
Mattias Nissler (ping if slow) 2013/07/11 10:05:49 This should be earlier in this file (the file as t
Alexander Alekseev 2013/07/12 20:10:49 Done.
2510 #endif
2511
2506 } // namespace prefs 2512 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698