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 2102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2113 // Each list item is a dictionary containing a "url", a "provider_title" and | 2113 // Each list item is a dictionary containing a "url", a "provider_title" and |
2114 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2114 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2115 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2115 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2116 // title or an empty string if the bookmark node was removed. | 2116 // title or an empty string if the bookmark node was removed. |
2117 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2117 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2118 #endif | 2118 #endif |
2119 | 2119 |
2120 // Whether DNS Quick Check is disabled in proxy resolution. | 2120 // Whether DNS Quick Check is disabled in proxy resolution. |
2121 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2121 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2122 | 2122 |
| 2123 // Whether PAC scripts are given a stripped https:// URL (enabled), or |
| 2124 // the full URL for https:// (disabled). |
| 2125 const char kPacHttpsUrlStrippingEnabled[] = |
| 2126 "proxy.pac_https_url_stripping_enabled"; |
| 2127 |
2123 // Whether Guest Mode is enabled within the browser. | 2128 // Whether Guest Mode is enabled within the browser. |
2124 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2129 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2125 | 2130 |
2126 // Whether Adding a new Person is enabled within the user manager. | 2131 // Whether Adding a new Person is enabled within the user manager. |
2127 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2132 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
2128 | 2133 |
2129 // Device identifier used by Easy Unlock stored in local state. This id will be | 2134 // Device identifier used by Easy Unlock stored in local state. This id will be |
2130 // combined with a user id, before being registered with the CryptAuth server, | 2135 // combined with a user id, before being registered with the CryptAuth server, |
2131 // so it can't correlate users on the same device. | 2136 // so it can't correlate users on the same device. |
2132 const char kEasyUnlockDeviceId[] = "easy_unlock.device_id"; | 2137 const char kEasyUnlockDeviceId[] = "easy_unlock.device_id"; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2183 const char kMediaRouterEnableCloudServices[] = | 2188 const char kMediaRouterEnableCloudServices[] = |
2184 "media_router.cloudservices.enabled"; | 2189 "media_router.cloudservices.enabled"; |
2185 #endif // defined(GOOGLE_CHROME_BUILD) | 2190 #endif // defined(GOOGLE_CHROME_BUILD) |
2186 // Whether or not the Media Router first run flow has been acknowledged by the | 2191 // Whether or not the Media Router first run flow has been acknowledged by the |
2187 // user. | 2192 // user. |
2188 const char kMediaRouterFirstRunFlowAcknowledged[] = | 2193 const char kMediaRouterFirstRunFlowAcknowledged[] = |
2189 "media_router.firstrunflow.acknowledged"; | 2194 "media_router.firstrunflow.acknowledged"; |
2190 #endif | 2195 #endif |
2191 | 2196 |
2192 } // namespace prefs | 2197 } // namespace prefs |
OLD | NEW |