| OLD | NEW |
| 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/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 1853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1864 // Whether the user may exit enrollment. | 1864 // Whether the user may exit enrollment. |
| 1865 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; | 1865 const char kDeviceEnrollmentCanExit[] = "enrollment.can_exit"; |
| 1866 | 1866 |
| 1867 // DM token fetched from the DM server during enrollment. Stored for Active | 1867 // DM token fetched from the DM server during enrollment. Stored for Active |
| 1868 // Directory devices only. | 1868 // Directory devices only. |
| 1869 const char kDeviceDMToken[] = "device_dm_token"; | 1869 const char kDeviceDMToken[] = "device_dm_token"; |
| 1870 | 1870 |
| 1871 // How many times HID detection OOBE dialog was shown. | 1871 // How many times HID detection OOBE dialog was shown. |
| 1872 const char kTimesHIDDialogShown[] = "HIDDialog.shown_how_many_times"; | 1872 const char kTimesHIDDialogShown[] = "HIDDialog.shown_how_many_times"; |
| 1873 | 1873 |
| 1874 // Dictionary of per-user Least Recently Used input method (used at login | 1874 // Dictionary of per-user last input method (used at login screen). Note that |
| 1875 // screen). | 1875 // the pref name is UsersLRUInputMethods for compatibility with previous |
| 1876 const char kUsersLRUInputMethod[] = "UsersLRUInputMethod"; | 1876 // versions. |
| 1877 const char kUsersLastInputMethod[] = "UsersLRUInputMethod"; |
| 1877 | 1878 |
| 1878 // A dictionary pref of the echo offer check flag. It sets offer info when | 1879 // A dictionary pref of the echo offer check flag. It sets offer info when |
| 1879 // an offer is checked. | 1880 // an offer is checked. |
| 1880 const char kEchoCheckedOffers[] = "EchoCheckedOffers"; | 1881 const char kEchoCheckedOffers[] = "EchoCheckedOffers"; |
| 1881 | 1882 |
| 1882 // Key name of a dictionary in local state to store cached multiprofle user | 1883 // Key name of a dictionary in local state to store cached multiprofle user |
| 1883 // behavior policy value. | 1884 // behavior policy value. |
| 1884 const char kCachedMultiProfileUserBehavior[] = "CachedMultiProfileUserBehavior"; | 1885 const char kCachedMultiProfileUserBehavior[] = "CachedMultiProfileUserBehavior"; |
| 1885 | 1886 |
| 1886 // A string pref with initial locale set in VPD or manifest. | 1887 // A string pref with initial locale set in VPD or manifest. |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2506 // settings. | 2507 // settings. |
| 2507 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = | 2508 const char kSettingsResetPromptLastTriggeredForStartupUrls[] = |
| 2508 "settings_reset_prompt.last_triggered_for_startup_urls"; | 2509 "settings_reset_prompt.last_triggered_for_startup_urls"; |
| 2509 | 2510 |
| 2510 // Timestamp of the last time the settings reset prompt was shown during the | 2511 // Timestamp of the last time the settings reset prompt was shown during the |
| 2511 // current prompt wave asking the user if they want to restore their homepage. | 2512 // current prompt wave asking the user if they want to restore their homepage. |
| 2512 const char kSettingsResetPromptLastTriggeredForHomepage[] = | 2513 const char kSettingsResetPromptLastTriggeredForHomepage[] = |
| 2513 "settings_reset_prompt.last_triggered_for_homepage"; | 2514 "settings_reset_prompt.last_triggered_for_homepage"; |
| 2514 | 2515 |
| 2515 } // namespace prefs | 2516 } // namespace prefs |
| OLD | NEW |