| 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 2152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2163 const char kDeviceRegistered[] = "DeviceRegistered"; | 2163 const char kDeviceRegistered[] = "DeviceRegistered"; |
| 2164 | 2164 |
| 2165 // List of usernames that used certificates pushed by policy before. | 2165 // List of usernames that used certificates pushed by policy before. |
| 2166 // This is used to prevent these users from joining multiprofile sessions. | 2166 // This is used to prevent these users from joining multiprofile sessions. |
| 2167 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; | 2167 const char kUsedPolicyCertificates[] = "policy.used_policy_certificates"; |
| 2168 | 2168 |
| 2169 // A dictionary containing server-provided device state pulled form the cloud | 2169 // A dictionary containing server-provided device state pulled form the cloud |
| 2170 // after recovery. | 2170 // after recovery. |
| 2171 const char kServerBackedDeviceState[] = "server_backed_device_state"; | 2171 const char kServerBackedDeviceState[] = "server_backed_device_state"; |
| 2172 | 2172 |
| 2173 // Customized wallpaper URL, which is already downloaded and scaled. |
| 2174 // The URL from this preference must never be fetched. It is compared to the |
| 2175 // URL from customization document to check if wallpaper URL has changed |
| 2176 // since wallpaper was cached. |
| 2177 const char kCustomizationDefaultWallpaperURL[] = |
| 2178 "customization.default_wallpaper_url"; |
| 2173 #endif | 2179 #endif |
| 2174 | 2180 |
| 2175 // Whether there is a Flash version installed that supports clearing LSO data. | 2181 // Whether there is a Flash version installed that supports clearing LSO data. |
| 2176 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; | 2182 const char kClearPluginLSODataEnabled[] = "browser.clear_lso_data_enabled"; |
| 2177 | 2183 |
| 2178 // Whether we should show Pepper Flash-specific settings. | 2184 // Whether we should show Pepper Flash-specific settings. |
| 2179 const char kPepperFlashSettingsEnabled[] = | 2185 const char kPepperFlashSettingsEnabled[] = |
| 2180 "browser.pepper_flash_settings_enabled"; | 2186 "browser.pepper_flash_settings_enabled"; |
| 2181 | 2187 |
| 2182 // String which specifies where to store the disk cache. | 2188 // String which specifies where to store the disk cache. |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2592 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2598 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2593 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2599 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2594 // title or an empty string if the bookmark node was removed. | 2600 // title or an empty string if the bookmark node was removed. |
| 2595 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2601 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2596 #endif | 2602 #endif |
| 2597 | 2603 |
| 2598 // Whether DNS Quick Check is disabled in proxy resolution. | 2604 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2599 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2605 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2600 | 2606 |
| 2601 } // namespace prefs | 2607 } // namespace prefs |
| OLD | NEW |