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

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 clang 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 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2113 "device_robot_refresh_token.any-api"; 2113 "device_robot_refresh_token.any-api";
2114 2114
2115 // Device requisition for enterprise enrollment. 2115 // Device requisition for enterprise enrollment.
2116 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition"; 2116 const char kDeviceEnrollmentRequisition[] = "enrollment.device_requisition";
2117 2117
2118 // Whether to automatically start the enterprise enrollment step during OOBE. 2118 // Whether to automatically start the enterprise enrollment step during OOBE.
2119 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start"; 2119 const char kDeviceEnrollmentAutoStart[] = "enrollment.auto_start";
2120 2120
2121 // Whether the user may exit enrollment. 2121 // Whether the user may exit enrollment.
2122 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; 2122 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit";
2123
2124 // Dictionary of per-user Least Recently Used input method (used at login
2125 // screen).
2126 extern const char kUsersLRUInputMethod[] = "UsersLRUInputMethod";
2123 #endif 2127 #endif
2124 2128
2125 // Whether there is a Flash version installed that supports clearing LSO data. 2129 // Whether there is a Flash version installed that supports clearing LSO data.
2126 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 2130 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
2127 2131
2128 // Whether we should show Pepper Flash-specific settings. 2132 // Whether we should show Pepper Flash-specific settings.
2129 const char kPepperFlashSettingsEnabled[] = 2133 const char kPepperFlashSettingsEnabled[] =
2130 "browser.pepper_flash_settings_enabled"; 2134 "browser.pepper_flash_settings_enabled";
2131 2135
2132 // String which specifies where to store the disk cache. 2136 // String which specifies where to store the disk cache.
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
2497 2501
2498 // How often the bubble has been shown. 2502 // How often the bubble has been shown.
2499 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown"; 2503 extern const char kModuleConflictBubbleShown[] = "module_conflict.bubble_shown";
2500 2504
2501 // A string pref for storing the salt used to compute the pepper device ID. 2505 // A string pref for storing the salt used to compute the pepper device ID.
2502 const char kDRMSalt[] = "settings.privacy.drm_salt"; 2506 const char kDRMSalt[] = "settings.privacy.drm_salt";
2503 // A boolean pref that enables the (private) pepper GetDeviceID() call. 2507 // A boolean pref that enables the (private) pepper GetDeviceID() call.
2504 const char kEnableDRM[] = "settings.privacy.drm_enabled"; 2508 const char kEnableDRM[] = "settings.privacy.drm_enabled";
2505 2509
2506 } // namespace prefs 2510 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698