| 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 1589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1600 const char kSyncAppSettings[] = "sync.app_settings"; | 1600 const char kSyncAppSettings[] = "sync.app_settings"; |
| 1601 const char kSyncApps[] = "sync.apps"; | 1601 const char kSyncApps[] = "sync.apps"; |
| 1602 const char kSyncAutofill[] = "sync.autofill"; | 1602 const char kSyncAutofill[] = "sync.autofill"; |
| 1603 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1603 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1604 const char kSyncThemes[] = "sync.themes"; | 1604 const char kSyncThemes[] = "sync.themes"; |
| 1605 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1605 const char kSyncTypedUrls[] = "sync.typed_urls"; |
| 1606 const char kSyncExtensions[] = "sync.extensions"; | 1606 const char kSyncExtensions[] = "sync.extensions"; |
| 1607 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1607 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 1608 const char kSyncSearchEngines[] = "sync.search_engines"; | 1608 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1609 const char kSyncSessions[] = "sync.sessions"; | 1609 const char kSyncSessions[] = "sync.sessions"; |
| 1610 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
| 1610 | 1611 |
| 1611 // Boolean used by enterprise configuration management in order to lock down | 1612 // Boolean used by enterprise configuration management in order to lock down |
| 1612 // sync. | 1613 // sync. |
| 1613 const char kSyncManaged[] = "sync.managed"; | 1614 const char kSyncManaged[] = "sync.managed"; |
| 1614 | 1615 |
| 1615 // Boolean to prevent sync from automatically starting up. This is | 1616 // Boolean to prevent sync from automatically starting up. This is |
| 1616 // used when sync is disabled by the user via the privacy dashboard. | 1617 // used when sync is disabled by the user via the privacy dashboard. |
| 1617 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1618 const char kSyncSuppressStart[] = "sync.suppress_start"; |
| 1618 | 1619 |
| 1619 // List of the currently acknowledged set of sync types, used to figure out | 1620 // List of the currently acknowledged set of sync types, used to figure out |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2031 const char kNetworkProfileLastWarningTime[] = | 2032 const char kNetworkProfileLastWarningTime[] = |
| 2032 "network_profile.last_warning_time"; | 2033 "network_profile.last_warning_time"; |
| 2033 | 2034 |
| 2034 #if defined(OS_MACOSX) | 2035 #if defined(OS_MACOSX) |
| 2035 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 2036 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 2036 const char kMacLeopardObsoleteInfobarLastShown[] = | 2037 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 2037 "mac_105_obsolete_infobar_last_shown"; | 2038 "mac_105_obsolete_infobar_last_shown"; |
| 2038 #endif // defined(OS_MACOSX) | 2039 #endif // defined(OS_MACOSX) |
| 2039 | 2040 |
| 2040 } // namespace prefs | 2041 } // namespace prefs |
| OLD | NEW |