| 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 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 // an extension ID and an update URL, delimited by a semicolon. | 1563 // an extension ID and an update URL, delimited by a semicolon. |
| 1564 // This preference is set by an admin policy, and meant to be only | 1564 // This preference is set by an admin policy, and meant to be only |
| 1565 // accessed through extensions::ExternalPolicyProvider. | 1565 // accessed through extensions::ExternalPolicyProvider. |
| 1566 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1566 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; |
| 1567 | 1567 |
| 1568 // Indicates on-disk data might have skeletal data that needs to be cleaned | 1568 // Indicates on-disk data might have skeletal data that needs to be cleaned |
| 1569 // on the next start of the browser. | 1569 // on the next start of the browser. |
| 1570 const char kExtensionStorageGarbageCollect[] = | 1570 const char kExtensionStorageGarbageCollect[] = |
| 1571 "extensions.storage.garbagecollect"; | 1571 "extensions.storage.garbagecollect"; |
| 1572 | 1572 |
| 1573 // Local state caching knowledge of whether the app launcher is installed. | |
| 1574 const char kAppLauncherIsEnabled[] = | |
| 1575 "extensions.app_launcher.should_show_apps_page"; | |
| 1576 | |
| 1577 // Keeps track of which sessions are collapsed in the Other Devices menu. | 1573 // Keeps track of which sessions are collapsed in the Other Devices menu. |
| 1578 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; | 1574 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; |
| 1579 | 1575 |
| 1580 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1576 // New Tab Page URLs that should not be shown as most visited thumbnails. |
| 1581 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1577 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
| 1582 | 1578 |
| 1583 // Last time of update of promo_resource_cache. | 1579 // Last time of update of promo_resource_cache. |
| 1584 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1580 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
| 1585 | 1581 |
| 1586 // Serves tips for the NTP. | 1582 // Serves tips for the NTP. |
| (...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2225 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2221 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2226 | 2222 |
| 2227 #if defined(OS_CHROMEOS) | 2223 #if defined(OS_CHROMEOS) |
| 2228 // The RLZ brand code, if enabled. | 2224 // The RLZ brand code, if enabled. |
| 2229 const char kRLZBrand[] = "rlz.brand"; | 2225 const char kRLZBrand[] = "rlz.brand"; |
| 2230 // Whether RLZ pings are disabled. | 2226 // Whether RLZ pings are disabled. |
| 2231 const char kRLZDisabled[] = "rlz.disabled"; | 2227 const char kRLZDisabled[] = "rlz.disabled"; |
| 2232 #endif | 2228 #endif |
| 2233 | 2229 |
| 2234 } // namespace prefs | 2230 } // namespace prefs |
| OLD | NEW |