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