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

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

Issue 12647008: Refactor OAuth2TokenService to have profile- and device-based implementations. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Wired in new device-level encryption calls. Created 7 years, 9 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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 2022 matching lines...) Expand 10 before | Expand all | Expand 10 after
2033 // Copy of owner tap-to-click option to use on login screen. 2033 // Copy of owner tap-to-click option to use on login screen.
2034 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click"; 2034 const char kOwnerTapToClickEnabled[] = "owner.touchpad.enable_tap_to_click";
2035 2035
2036 // The length of device uptime after which an automatic reboot is scheduled, 2036 // The length of device uptime after which an automatic reboot is scheduled,
2037 // expressed in seconds. 2037 // expressed in seconds.
2038 const char kUptimeLimit[] = "automatic_reboot.uptime_limit"; 2038 const char kUptimeLimit[] = "automatic_reboot.uptime_limit";
2039 2039
2040 // Whether an automatic reboot should be scheduled when an update has been 2040 // Whether an automatic reboot should be scheduled when an update has been
2041 // applied and a reboot is required to complete the update process. 2041 // applied and a reboot is required to complete the update process.
2042 const char kRebootAfterUpdate[] = "automatic_reboot.reboot_after_update"; 2042 const char kRebootAfterUpdate[] = "automatic_reboot.reboot_after_update";
2043
2044 // An any-api scoped refresh token for enterprise-enrolled devices. Allows
2045 // for connection to Google APIs when the user isn't logged in. Currently used
2046 // for for getting a cloudprint scoped token to allow printing in Guest mode,
2047 // Public Accounts and kiosks.
2048 const char kDeviceRobotAnyApiRefreshToken[] =
2049 "device_robot_refresh_token.any-api";
2043 #endif 2050 #endif
2044 2051
2045 // Whether there is a Flash version installed that supports clearing LSO data. 2052 // Whether there is a Flash version installed that supports clearing LSO data.
2046 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; 2053 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled";
2047 2054
2048 // Whether we should show Pepper Flash-specific settings. 2055 // Whether we should show Pepper Flash-specific settings.
2049 const char kPepperFlashSettingsEnabled[] = 2056 const char kPepperFlashSettingsEnabled[] =
2050 "browser.pepper_flash_settings_enabled"; 2057 "browser.pepper_flash_settings_enabled";
2051 2058
2052 // String which specifies where to store the disk cache. 2059 // String which specifies where to store the disk cache.
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
2360 const char kRLZBrand[] = "rlz.brand"; 2367 const char kRLZBrand[] = "rlz.brand";
2361 // Whether RLZ pings are disabled. 2368 // Whether RLZ pings are disabled.
2362 const char kRLZDisabled[] = "rlz.disabled"; 2369 const char kRLZDisabled[] = "rlz.disabled";
2363 #endif 2370 #endif
2364 2371
2365 // The directory in user data dir that contains the profile to be used with the 2372 // The directory in user data dir that contains the profile to be used with the
2366 // app launcher. 2373 // app launcher.
2367 extern const char kAppListProfile[] = "app_list.profile"; 2374 extern const char kAppListProfile[] = "app_list.profile";
2368 2375
2369 } // namespace prefs 2376 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698