Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(525)

Side by Side Diff: chrome/common/pref_names.cc

Issue 33863002: Added pref for snapshot document collapsed state (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« chrome/common/pref_names.h ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; 1704 const char kExtensionInstallForceList[] = "extensions.install.forcelist";
1705 1705
1706 // Indicates on-disk data might have skeletal data that needs to be cleaned 1706 // Indicates on-disk data might have skeletal data that needs to be cleaned
1707 // on the next start of the browser. 1707 // on the next start of the browser.
1708 const char kExtensionStorageGarbageCollect[] = 1708 const char kExtensionStorageGarbageCollect[] =
1709 "extensions.storage.garbagecollect"; 1709 "extensions.storage.garbagecollect";
1710 1710
1711 // Keeps track of which sessions are collapsed in the Other Devices menu. 1711 // Keeps track of which sessions are collapsed in the Other Devices menu.
1712 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; 1712 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions";
1713 1713
1714 // Keeps track of snapshot documents collapsed state in the Other Devices menu.
Pam (message me for reviews) 2013/11/02 08:27:25 nit: alphabetize to match newly alphabetized :) kN
apiccion 2013/11/03 17:52:59 Done.
1715 const char kNtpCollapsedSnapshotDocument[] = "ntp.collapsed_snapshot_document";
1716
1717 // Keeps track of recently closed tabs collapsed state in the Other Devices
1718 // menu.
1719 const char kNtpCollapsedRecentlyClosedTabs[] =
1720 "ntp.collapsed_recently_closed_tabs";
1721
1722 // Keeps track of sync promo collapsed state in the Other Devices menu.
1723 const char kNtpCollapsedSyncPromo[] = "ntp.collapsed_sync_promo";
1724
1714 // New Tab Page URLs that should not be shown as most visited thumbnails. 1725 // New Tab Page URLs that should not be shown as most visited thumbnails.
1715 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; 1726 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist";
1716 1727
1717 // Last time of update of promo_resource_cache. 1728 // Last time of update of promo_resource_cache.
1718 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; 1729 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update";
1719 1730
1720 // Serves tips for the NTP. 1731 // Serves tips for the NTP.
1721 const char kNtpTipsResourceServer[] = "ntp.tips_resource_server"; 1732 const char kNtpTipsResourceServer[] = "ntp.tips_resource_server";
1722 1733
1723 // Serves dates to determine display of elements on the NTP. 1734 // Serves dates to determine display of elements on the NTP.
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
2593 #if defined(OS_ANDROID) 2604 #if defined(OS_ANDROID)
2594 // A list of partner bookmark rename/remove mappings. 2605 // A list of partner bookmark rename/remove mappings.
2595 // Each list item is a dictionary containing a "url", a "provider_title" and 2606 // Each list item is a dictionary containing a "url", a "provider_title" and
2596 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2607 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2597 // given by the PartnerBookmarksProvider and either the user-visible renamed 2608 // given by the PartnerBookmarksProvider and either the user-visible renamed
2598 // title or an empty string if the bookmark node was removed. 2609 // title or an empty string if the bookmark node was removed.
2599 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2610 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2600 #endif 2611 #endif
2601 2612
2602 } // namespace prefs 2613 } // namespace prefs
OLDNEW
« chrome/common/pref_names.h ('K') | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698