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 1886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1897 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1897 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; |
1898 | 1898 |
1899 // String that represents the recovery component last downloaded version. This | 1899 // String that represents the recovery component last downloaded version. This |
1900 // takes the usual 'a.b.c.d' notation. | 1900 // takes the usual 'a.b.c.d' notation. |
1901 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1901 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1902 | 1902 |
1903 // String that stores the component updater last known state. This is used for | 1903 // String that stores the component updater last known state. This is used for |
1904 // troubleshooting. | 1904 // troubleshooting. |
1905 const char kComponentUpdaterState[] = "component_updater.state"; | 1905 const char kComponentUpdaterState[] = "component_updater.state"; |
1906 | 1906 |
1907 // Boolean pref indicating whether the session restore dialog has been shown. | |
1908 const char kRestoreSessionStateDialogShown[] = | |
1909 "restore_session_state.dialog_shown"; | |
1910 | |
1911 // Boolean that is true if Web Intents is enabled. | 1907 // Boolean that is true if Web Intents is enabled. |
1912 const char kWebIntentsEnabled[] = "webintents.enabled"; | 1908 const char kWebIntentsEnabled[] = "webintents.enabled"; |
1913 | 1909 |
1914 // The next media gallery ID to assign. | 1910 // The next media gallery ID to assign. |
1915 const char kMediaGalleryUniqueId[] = "media_gallery.gallery_id"; | 1911 const char kMediaGalleryUniqueId[] = "media_gallery.gallery_id"; |
1916 | 1912 |
1917 // A list of dictionaries, where each dictionary represents a known media | 1913 // A list of dictionaries, where each dictionary represents a known media |
1918 // gallery. | 1914 // gallery. |
1919 const char kMediaGalleryRememberedGalleries[] = | 1915 const char kMediaGalleryRememberedGalleries[] = |
1920 "media_gallery.remembered_galleries"; | 1916 "media_gallery.remembered_galleries"; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1977 const char kNetworkProfileLastWarningTime[] = | 1973 const char kNetworkProfileLastWarningTime[] = |
1978 "network_profile.last_warning_time"; | 1974 "network_profile.last_warning_time"; |
1979 | 1975 |
1980 #if defined(OS_MACOSX) | 1976 #if defined(OS_MACOSX) |
1981 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1977 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
1982 const char kMacLeopardObsoleteInfobarLastShown[] = | 1978 const char kMacLeopardObsoleteInfobarLastShown[] = |
1983 "mac_105_obsolete_infobar_last_shown"; | 1979 "mac_105_obsolete_infobar_last_shown"; |
1984 #endif // defined(OS_MACOSX) | 1980 #endif // defined(OS_MACOSX) |
1985 | 1981 |
1986 } // namespace prefs | 1982 } // namespace prefs |
OLD | NEW |