| 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 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1312 // Version number of last blacklist check | 1312 // Version number of last blacklist check |
| 1313 const char kExtensionBlacklistUpdateVersion[] = | 1313 const char kExtensionBlacklistUpdateVersion[] = |
| 1314 "extensions.blacklistupdate.version"; | 1314 "extensions.blacklistupdate.version"; |
| 1315 | 1315 |
| 1316 // Number of times the NTP4 informational bubble has been shown. | 1316 // Number of times the NTP4 informational bubble has been shown. |
| 1317 const char kNtp4IntroDisplayCount[] = "ntp.intro_display_count"; | 1317 const char kNtp4IntroDisplayCount[] = "ntp.intro_display_count"; |
| 1318 | 1318 |
| 1319 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1319 // New Tab Page URLs that should not be shown as most visited thumbnails. |
| 1320 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1320 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
| 1321 | 1321 |
| 1322 // The URLs that have been pinned to the Most Visited section of the New Tab | |
| 1323 // Page. | |
| 1324 const char kNtpMostVisitedPinnedURLs[] = "ntp.pinned_urls"; | |
| 1325 | |
| 1326 // Data downloaded from promo resource pages (JSON, RSS) to be used to | 1322 // Data downloaded from promo resource pages (JSON, RSS) to be used to |
| 1327 // dynamically deliver data for the new tab page. | 1323 // dynamically deliver data for the new tab page. |
| 1328 const char kNtpPromoResourceCache[] = "ntp.promo_resource_cache"; | 1324 const char kNtpPromoResourceCache[] = "ntp.promo_resource_cache"; |
| 1329 | 1325 |
| 1330 // Last time of update of promo_resource_cache. | 1326 // Last time of update of promo_resource_cache. |
| 1331 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1327 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
| 1332 | 1328 |
| 1333 // Is user logged into G+ (used for G+ extension promo). | 1329 // Is user logged into G+ (used for G+ extension promo). |
| 1334 const char kNtpPromoIsLoggedInToPlus[] = "ntp.promo_is_logged_in_to_plus"; | 1330 const char kNtpPromoIsLoggedInToPlus[] = "ntp.promo_is_logged_in_to_plus"; |
| 1335 | 1331 |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1825 const char kRailBreakProportion[] = | 1821 const char kRailBreakProportion[] = |
| 1826 "gesture.rail_break_proportion"; | 1822 "gesture.rail_break_proportion"; |
| 1827 const char kRailStartProportion[] = | 1823 const char kRailStartProportion[] = |
| 1828 "gesture.rail_start_proportion"; | 1824 "gesture.rail_start_proportion"; |
| 1829 #endif | 1825 #endif |
| 1830 | 1826 |
| 1831 // Indicates whether the browser is in managed mode. | 1827 // Indicates whether the browser is in managed mode. |
| 1832 const char kInManagedMode[] = "managed_mode"; | 1828 const char kInManagedMode[] = "managed_mode"; |
| 1833 | 1829 |
| 1834 } // namespace prefs | 1830 } // namespace prefs |
| OLD | NEW |