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

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

Issue 24616002: Clean up a few unused globals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win Created 7 years, 2 months 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 | Annotate | Revision Log
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 1680 matching lines...) Expand 10 before | Expand all | Expand 10 after
1691 1691
1692 // Which page should be visible on the new tab page v4 1692 // Which page should be visible on the new tab page v4
1693 const char kNtpShownPage[] = "ntp.shown_page"; 1693 const char kNtpShownPage[] = "ntp.shown_page";
1694 1694
1695 // True if a desktop sync session was found for this user. 1695 // True if a desktop sync session was found for this user.
1696 const char kNtpPromoDesktopSessionFound[] = "ntp.promo_desktop_session_found"; 1696 const char kNtpPromoDesktopSessionFound[] = "ntp.promo_desktop_session_found";
1697 1697
1698 // Boolean indicating whether the web store is active for the current locale. 1698 // Boolean indicating whether the web store is active for the current locale.
1699 const char kNtpWebStoreEnabled[] = "ntp.webstore_enabled"; 1699 const char kNtpWebStoreEnabled[] = "ntp.webstore_enabled";
1700 1700
1701 // The id of the last web store promo actually displayed on the NTP.
1702 const char kNtpWebStorePromoLastId[] = "ntp.webstore_last_promo_id";
1703
1704 // The id of the current web store promo.
1705 const char kNtpWebStorePromoId[] = "ntp.webstorepromo.id";
1706
1707 // The header line for the NTP web store promo.
1708 const char kNtpWebStorePromoHeader[] = "ntp.webstorepromo.header";
1709
1710 // The button text for the NTP web store promo.
1711 const char kNtpWebStorePromoButton[] = "ntp.webstorepromo.button";
1712
1713 // The button link for the NTP web store promo.
1714 const char kNtpWebStorePromoLink[] = "ntp.webstorepromo.link";
1715
1716 // The image URL for the NTP web store promo logo.
1717 const char kNtpWebStorePromoLogo[] = "ntp.webstorepromo.logo";
1718
1719 // The original URL for the NTP web store promo logo.
1720 const char kNtpWebStorePromoLogoSource[] = "ntp.webstorepromo.logo_source";
1721
1722 // The "hide this" link text for the NTP web store promo.
1723 const char kNtpWebStorePromoExpire[] = "ntp.webstorepromo.expire";
1724
1725 // Specifies what users should maximize the NTP web store promo.
1726 const char kNtpWebStorePromoUserGroup[] = "ntp.webstorepromo.usergroup";
1727
1728 // Customized app page names that appear on the New Tab Page. 1701 // Customized app page names that appear on the New Tab Page.
1729 const char kNtpAppPageNames[] = "ntp.app_page_names"; 1702 const char kNtpAppPageNames[] = "ntp.app_page_names";
1730 1703
1731 // A private RSA key for ADB handshake. 1704 // A private RSA key for ADB handshake.
1732 const char kDevToolsAdbKey[] = "devtools.adb_key"; 1705 const char kDevToolsAdbKey[] = "devtools.adb_key";
1733 1706
1734 const char kDevToolsDisabled[] = "devtools.disabled"; 1707 const char kDevToolsDisabled[] = "devtools.disabled";
1735 1708
1736 // A string specifying the dock location (either 'bottom' or 'right'). 1709 // A string specifying the dock location (either 'bottom' or 'right').
1737 const char kDevToolsDockSide[] = "devtools.dock_side"; 1710 const char kDevToolsDockSide[] = "devtools.dock_side";
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
2528 // ActivityLog initialization before the extension system is initialized. 2501 // ActivityLog initialization before the extension system is initialized.
2529 const char kWatchdogExtensionActive[] = 2502 const char kWatchdogExtensionActive[] =
2530 "profile.extensions.activity_log.watchdog_extension_active"; 2503 "profile.extensions.activity_log.watchdog_extension_active";
2531 2504
2532 // A dictionary pref which maps profile names to dictionary values which hold 2505 // A dictionary pref which maps profile names to dictionary values which hold
2533 // hashes of profile prefs that we track to detect changes that happen outside 2506 // hashes of profile prefs that we track to detect changes that happen outside
2534 // of Chrome. 2507 // of Chrome.
2535 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; 2508 const char kProfilePreferenceHashes[] = "profile.preference_hashes";
2536 2509
2537 } // namespace prefs 2510 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698