| 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/pref_font_webkit_names.h" | 9 #include "chrome/common/pref_font_webkit_names.h" |
| 10 | 10 |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the | 780 // against GAIA: If GAIA redirects to a SAML IdP, the preference is set to the |
| 781 // current time. If GAIA performs the authentication itself, the preference is | 781 // current time. If GAIA performs the authentication itself, the preference is |
| 782 // cleared. The time is expressed as the serialization obtained from | 782 // cleared. The time is expressed as the serialization obtained from |
| 783 // base::Time::ToInternalValue(). | 783 // base::Time::ToInternalValue(). |
| 784 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; | 784 const char kSAMLLastGAIASignInTime[] = "saml.last_gaia_sign_in_time"; |
| 785 | 785 |
| 786 // The total number of seconds that the machine has spent sitting on the | 786 // The total number of seconds that the machine has spent sitting on the |
| 787 // OOBE screen. | 787 // OOBE screen. |
| 788 const char kTimeOnOobe[] = "settings.time_on_oobe"; | 788 const char kTimeOnOobe[] = "settings.time_on_oobe"; |
| 789 | 789 |
| 790 // The app/extension name who sets the current wallpaper. If current wallpaper | |
| 791 // is set by the component wallpaper picker, it is set to an empty string. | |
| 792 const char kCurrentWallpaperAppName[] = "wallpaper.app.name"; | |
| 793 | |
| 794 // List of mounted file systems via the File System Provider API. Used to | 790 // List of mounted file systems via the File System Provider API. Used to |
| 795 // restore them after a reboot. | 791 // restore them after a reboot. |
| 796 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; | 792 const char kFileSystemProviderMounted[] = "file_system_provider.mounted"; |
| 797 | 793 |
| 798 // A boolean pref set to true if the virtual keyboard should be enabled. | 794 // A boolean pref set to true if the virtual keyboard should be enabled. |
| 799 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; | 795 const char kTouchVirtualKeyboardEnabled[] = "ui.touch_virtual_keyboard_enabled"; |
| 800 | 796 |
| 801 // Boolean prefs for the status of the touch screen and the touchpad. | 797 // Boolean prefs for the status of the touch screen and the touchpad. |
| 802 const char kTouchScreenEnabled[] = "events.touch_screen.enabled"; | 798 const char kTouchScreenEnabled[] = "events.touch_screen.enabled"; |
| 803 const char kTouchPadEnabled[] = "events.touch_pad.enabled"; | 799 const char kTouchPadEnabled[] = "events.touch_pad.enabled"; |
| (...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2171 const char kMediaRouterEnableCloudServices[] = | 2167 const char kMediaRouterEnableCloudServices[] = |
| 2172 "media_router.cloudservices.enabled"; | 2168 "media_router.cloudservices.enabled"; |
| 2173 #endif // defined(GOOGLE_CHROME_BUILD) | 2169 #endif // defined(GOOGLE_CHROME_BUILD) |
| 2174 // Whether or not the Media Router first run flow has been acknowledged by the | 2170 // Whether or not the Media Router first run flow has been acknowledged by the |
| 2175 // user. | 2171 // user. |
| 2176 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2172 const char kMediaRouterFirstRunFlowAcknowledged[] = |
| 2177 "media_router.firstrunflow.acknowledged"; | 2173 "media_router.firstrunflow.acknowledged"; |
| 2178 #endif | 2174 #endif |
| 2179 | 2175 |
| 2180 } // namespace prefs | 2176 } // namespace prefs |
| OLD | NEW |