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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1702 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1702 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; |
1703 | 1703 |
1704 // Indicates on-disk data might have skeletal data that needs to be cleaned | 1704 // Indicates on-disk data might have skeletal data that needs to be cleaned |
1705 // on the next start of the browser. | 1705 // on the next start of the browser. |
1706 const char kExtensionStorageGarbageCollect[] = | 1706 const char kExtensionStorageGarbageCollect[] = |
1707 "extensions.storage.garbagecollect"; | 1707 "extensions.storage.garbagecollect"; |
1708 | 1708 |
1709 // Keeps track of which sessions are collapsed in the Other Devices menu. | 1709 // Keeps track of which sessions are collapsed in the Other Devices menu. |
1710 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; | 1710 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; |
1711 | 1711 |
| 1712 // Keeps track of snapshot documents collapsed state in the Other Devices menu. |
| 1713 const char kNtpCollapsedSnapshotDocument[] = "ntp.collapsed_snapshot_document"; |
| 1714 |
| 1715 // Keeps track of recently closed tabs collapsed state in the Other Devices |
| 1716 // menu. |
| 1717 const char kNtpCollapsedRecentlyClosedTabs[] = |
| 1718 "ntp.collapsed_recently_closed_tabs"; |
| 1719 |
| 1720 // Keeps track of sync promo collapsed state in the Other Devices menu. |
| 1721 const char kNtpCollapsedSyncPromo[] = "ntp.collapsed_sync_promo"; |
| 1722 |
1712 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1723 // New Tab Page URLs that should not be shown as most visited thumbnails. |
1713 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1724 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
1714 | 1725 |
1715 // Last time of update of promo_resource_cache. | 1726 // Last time of update of promo_resource_cache. |
1716 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1727 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
1717 | 1728 |
1718 // Serves tips for the NTP. | 1729 // Serves tips for the NTP. |
1719 const char kNtpTipsResourceServer[] = "ntp.tips_resource_server"; | 1730 const char kNtpTipsResourceServer[] = "ntp.tips_resource_server"; |
1720 | 1731 |
1721 // Serves dates to determine display of elements on the NTP. | 1732 // Serves dates to determine display of elements on the NTP. |
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2582 // A dictionary pref which maps profile names to dictionary values which hold | 2593 // A dictionary pref which maps profile names to dictionary values which hold |
2583 // hashes of profile prefs that we track to detect changes that happen outside | 2594 // hashes of profile prefs that we track to detect changes that happen outside |
2584 // of Chrome. | 2595 // of Chrome. |
2585 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2596 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
2586 | 2597 |
2587 // Stores a pair of local time and corresponding network time to bootstrap | 2598 // Stores a pair of local time and corresponding network time to bootstrap |
2588 // network time tracker when browser starts. | 2599 // network time tracker when browser starts. |
2589 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2600 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
2590 | 2601 |
2591 } // namespace prefs | 2602 } // namespace prefs |
OLD | NEW |