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 2243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2254 const char kDeviceRegistered[] = "DeviceRegistered"; | 2254 const char kDeviceRegistered[] = "DeviceRegistered"; |
2255 | 2255 |
2256 // List of usernames that used certificates pushed by policy before. | 2256 // List of usernames that used certificates pushed by policy before. |
2257 // This is used to prevent these users from joining multiprofile sessions. | 2257 // This is used to prevent these users from joining multiprofile sessions. |
2258 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; | 2258 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
2259 | 2259 |
2260 // A dictionary containing server-provided device state pulled form the cloud | 2260 // A dictionary containing server-provided device state pulled form the cloud |
2261 // after recovery. | 2261 // after recovery. |
2262 const char kServerBackedDeviceState[] = "server_backed_device_state"; | 2262 const char kServerBackedDeviceState[] = "server_backed_device_state"; |
2263 | 2263 |
| 2264 // Customized wallpaper URL, which is already downloaded and scaled. |
| 2265 const char kCustomizationDefaultWallpaperURL[] = |
| 2266 "customization.default_wallpaper_url"; |
2264 #endif | 2267 #endif |
2265 | 2268 |
2266 // Whether there is a Flash version installed that supports clearing LSO data. | 2269 // Whether there is a Flash version installed that supports clearing LSO data. |
2267 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 2270 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
2268 | 2271 |
2269 // Whether we should show Pepper Flash-specific settings. | 2272 // Whether we should show Pepper Flash-specific settings. |
2270 const char kPepperFlashSettingsEnabled[] = | 2273 const char kPepperFlashSettingsEnabled[] = |
2271 "browser.pepper_flash_settings_enabled"; | 2274 "browser.pepper_flash_settings_enabled"; |
2272 | 2275 |
2273 // String which specifies where to store the disk cache. | 2276 // String which specifies where to store the disk cache. |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2676 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2679 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2677 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2680 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2678 // title or an empty string if the bookmark node was removed. | 2681 // title or an empty string if the bookmark node was removed. |
2679 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2682 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2680 #endif | 2683 #endif |
2681 | 2684 |
2682 // Whether DNS Quick Check is disabled in proxy resolution. | 2685 // Whether DNS Quick Check is disabled in proxy resolution. |
2683 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2686 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2684 | 2687 |
2685 } // namespace prefs | 2688 } // namespace prefs |
OLD | NEW |