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 1903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1914 "profile.managed_notifications_allowed_for_urls"; | 1914 "profile.managed_notifications_allowed_for_urls"; |
1915 const char kManagedNotificationsBlockedForUrls[] = | 1915 const char kManagedNotificationsBlockedForUrls[] = |
1916 "profile.managed_notifications_blocked_for_urls"; | 1916 "profile.managed_notifications_blocked_for_urls"; |
1917 const char kManagedAutoSelectCertificateForUrls[] = | 1917 const char kManagedAutoSelectCertificateForUrls[] = |
1918 "profile.managed_auto_select_certificate_for_urls"; | 1918 "profile.managed_auto_select_certificate_for_urls"; |
1919 | 1919 |
1920 // Set to true if the user created a login item so we should not modify it when | 1920 // Set to true if the user created a login item so we should not modify it when |
1921 // uninstalling background apps. | 1921 // uninstalling background apps. |
1922 const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item"; | 1922 const char kUserCreatedLoginItem[] = "background_mode.user_created_login_item"; |
1923 | 1923 |
| 1924 // Set to true if the user removed our login item so we should not create a new |
| 1925 // one when uninstalling background apps. |
| 1926 const char kUserRemovedLoginItem[] = "background_mode.user_removed_login_item"; |
| 1927 |
1924 // Set to true if background mode is enabled on this browser. | 1928 // Set to true if background mode is enabled on this browser. |
1925 const char kBackgroundModeEnabled[] = "background_mode.enabled"; | 1929 const char kBackgroundModeEnabled[] = "background_mode.enabled"; |
1926 | 1930 |
1927 // List of protocol handlers. | 1931 // List of protocol handlers. |
1928 const char kRegisteredProtocolHandlers[] = | 1932 const char kRegisteredProtocolHandlers[] = |
1929 "custom_handlers.registered_protocol_handlers"; | 1933 "custom_handlers.registered_protocol_handlers"; |
1930 | 1934 |
1931 // List of protocol handlers the user has requested not to be asked about again. | 1935 // List of protocol handlers the user has requested not to be asked about again. |
1932 const char kIgnoredProtocolHandlers[] = | 1936 const char kIgnoredProtocolHandlers[] = |
1933 "custom_handlers.ignored_protocol_handlers"; | 1937 "custom_handlers.ignored_protocol_handlers"; |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2021 const char kNetworkProfileLastWarningTime[] = | 2025 const char kNetworkProfileLastWarningTime[] = |
2022 "network_profile.last_warning_time"; | 2026 "network_profile.last_warning_time"; |
2023 | 2027 |
2024 #if defined(OS_MACOSX) | 2028 #if defined(OS_MACOSX) |
2025 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2029 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
2026 const char kMacLeopardObsoleteInfobarLastShown[] = | 2030 const char kMacLeopardObsoleteInfobarLastShown[] = |
2027 "mac_105_obsolete_infobar_last_shown"; | 2031 "mac_105_obsolete_infobar_last_shown"; |
2028 #endif // defined(OS_MACOSX) | 2032 #endif // defined(OS_MACOSX) |
2029 | 2033 |
2030 } // namespace prefs | 2034 } // namespace prefs |
OLD | NEW |