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/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 2028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2039 // Copy of owner tap-to-click option to use on login screen. | 2039 // Copy of owner tap-to-click option to use on login screen. |
2040 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; | 2040 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; |
2041 | 2041 |
2042 // The length of device uptime after which an automatic reboot is scheduled, | 2042 // The length of device uptime after which an automatic reboot is scheduled, |
2043 // expressed in seconds. | 2043 // expressed in seconds. |
2044 const char kUptimeLimit[] = "automatic_reboot.uptime_limit"; | 2044 const char kUptimeLimit[] = "automatic_reboot.uptime_limit"; |
2045 | 2045 |
2046 // Whether an automatic reboot should be scheduled when an update has been | 2046 // Whether an automatic reboot should be scheduled when an update has been |
2047 // applied and a reboot is required to complete the update process. | 2047 // applied and a reboot is required to complete the update process. |
2048 const char kRebootAfterUpdate[] = "automatic_reboot.reboot_after_update"; | 2048 const char kRebootAfterUpdate[] = "automatic_reboot.reboot_after_update"; |
| 2049 |
| 2050 // An any-api scoped refresh token for enterprise-enrolled devices. Allows |
| 2051 // for connection to Google APIs when the user isn't logged in. Currently used |
| 2052 // for for getting a cloudprint scoped token to allow printing in Guest mode, |
| 2053 // Public Accounts and kiosks. |
| 2054 const char kDeviceRobotAnyApiRefreshToken[] = |
| 2055 "device_robot_refresh_token.any-api"; |
2049 #endif | 2056 #endif |
2050 | 2057 |
2051 // Whether there is a Flash version installed that supports clearing LSO data. | 2058 // Whether there is a Flash version installed that supports clearing LSO data. |
2052 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 2059 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
2053 | 2060 |
2054 // Whether we should show Pepper Flash-specific settings. | 2061 // Whether we should show Pepper Flash-specific settings. |
2055 const char kPepperFlashSettingsEnabled[] = | 2062 const char kPepperFlashSettingsEnabled[] = |
2056 "browser.pepper_flash_settings_enabled"; | 2063 "browser.pepper_flash_settings_enabled"; |
2057 | 2064 |
2058 // String which specifies where to store the disk cache. | 2065 // String which specifies where to store the disk cache. |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2388 // the time of the last ping. | 2395 // the time of the last ping. |
2389 extern const char kAppListLaunchCount[] = "app_list.launch_count"; | 2396 extern const char kAppListLaunchCount[] = "app_list.launch_count"; |
2390 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2397 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
2391 | 2398 |
2392 // The number of times the an app was launched from the app launcher since last | 2399 // The number of times the an app was launched from the app launcher since last |
2393 // ping and the time of the last ping. | 2400 // ping and the time of the last ping. |
2394 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2401 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2395 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2402 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2396 | 2403 |
2397 } // namespace prefs | 2404 } // namespace prefs |
OLD | NEW |