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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 const char kAutologinEnabled[] = "autologin.enabled"; | 314 const char kAutologinEnabled[] = "autologin.enabled"; |
315 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; | 315 const char kReverseAutologinEnabled[] = "reverse_autologin.enabled"; |
316 | 316 |
317 // Boolean that is true when SafeBrowsing is enabled. | 317 // Boolean that is true when SafeBrowsing is enabled. |
318 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; | 318 const char kSafeBrowsingEnabled[] = "safebrowsing.enabled"; |
319 | 319 |
320 // Boolean that is true when SafeBrowsing Malware Report is enabled. | 320 // Boolean that is true when SafeBrowsing Malware Report is enabled. |
321 const char kSafeBrowsingReportingEnabled[] = | 321 const char kSafeBrowsingReportingEnabled[] = |
322 "safebrowsing.reporting_enabled"; | 322 "safebrowsing.reporting_enabled"; |
323 | 323 |
| 324 // Boolean that is true when the SafeBrowsing interstitial should not allow |
| 325 // users to proceed anyway. |
| 326 const char kSafeBrowsingProceedAnywayDisabled[] = |
| 327 "safebrowsing.proceed_anyway_disabled"; |
| 328 |
324 // Enum that specifies whether Incognito mode is: | 329 // Enum that specifies whether Incognito mode is: |
325 // 0 - Enabled. Default behaviour. Default mode is available on demand. | 330 // 0 - Enabled. Default behaviour. Default mode is available on demand. |
326 // 1 - Disabled. Used cannot browse pages in Incognito mode. | 331 // 1 - Disabled. Used cannot browse pages in Incognito mode. |
327 // 2 - Forced. All pages/sessions are forced into Incognito. | 332 // 2 - Forced. All pages/sessions are forced into Incognito. |
328 const char kIncognitoModeAvailability[] = "incognito.mode_availability"; | 333 const char kIncognitoModeAvailability[] = "incognito.mode_availability"; |
329 | 334 |
330 // Boolean that is true when Suggest support is enabled. | 335 // Boolean that is true when Suggest support is enabled. |
331 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; | 336 const char kSearchSuggestEnabled[] = "search.suggest_enabled"; |
332 | 337 |
333 // Boolean that indicates whether the browser should put up a confirmation | 338 // Boolean that indicates whether the browser should put up a confirmation |
(...skipping 1643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1977 const char kNetworkProfileLastWarningTime[] = | 1982 const char kNetworkProfileLastWarningTime[] = |
1978 "network_profile.last_warning_time"; | 1983 "network_profile.last_warning_time"; |
1979 | 1984 |
1980 #if defined(OS_MACOSX) | 1985 #if defined(OS_MACOSX) |
1981 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1986 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
1982 const char kMacLeopardObsoleteInfobarLastShown[] = | 1987 const char kMacLeopardObsoleteInfobarLastShown[] = |
1983 "mac_105_obsolete_infobar_last_shown"; | 1988 "mac_105_obsolete_infobar_last_shown"; |
1984 #endif // defined(OS_MACOSX) | 1989 #endif // defined(OS_MACOSX) |
1985 | 1990 |
1986 } // namespace prefs | 1991 } // namespace prefs |
OLD | NEW |