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 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1604 // an extension ID and an update URL, delimited by a semicolon. | 1604 // an extension ID and an update URL, delimited by a semicolon. |
1605 // This preference is set by an admin policy, and meant to be only | 1605 // This preference is set by an admin policy, and meant to be only |
1606 // accessed through extensions::ExternalPolicyProvider. | 1606 // accessed through extensions::ExternalPolicyProvider. |
1607 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1607 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; |
1608 | 1608 |
1609 // Indicates on-disk data might have skeletal data that needs to be cleaned | 1609 // Indicates on-disk data might have skeletal data that needs to be cleaned |
1610 // on the next start of the browser. | 1610 // on the next start of the browser. |
1611 const char kExtensionStorageGarbageCollect[] = | 1611 const char kExtensionStorageGarbageCollect[] = |
1612 "extensions.storage.garbagecollect"; | 1612 "extensions.storage.garbagecollect"; |
1613 | 1613 |
1614 // Local state caching knowledge of whether the app launcher is installed. | |
1615 const char kAppLauncherIsEnabled[] = | |
1616 "extensions.app_launcher.should_show_apps_page"; | |
1617 | |
1618 // Keeps track of which sessions are collapsed in the Other Devices menu. | 1614 // Keeps track of which sessions are collapsed in the Other Devices menu. |
1619 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; | 1615 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; |
1620 | 1616 |
1621 // New Tab Page URLs that should not be shown as most visited thumbnails. | 1617 // New Tab Page URLs that should not be shown as most visited thumbnails. |
1622 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; | 1618 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; |
1623 | 1619 |
1624 // Last time of update of promo_resource_cache. | 1620 // Last time of update of promo_resource_cache. |
1625 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; | 1621 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; |
1626 | 1622 |
1627 // Serves tips for the NTP. | 1623 // Serves tips for the NTP. |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2280 const char kRLZDisabled[] = "rlz.disabled"; | 2276 const char kRLZDisabled[] = "rlz.disabled"; |
2281 #endif | 2277 #endif |
2282 | 2278 |
2283 #if defined(ENABLE_APP_LIST) | 2279 #if defined(ENABLE_APP_LIST) |
2284 // The directory in user data dir that contains the profile to be used with the | 2280 // The directory in user data dir that contains the profile to be used with the |
2285 // app launcher. | 2281 // app launcher. |
2286 extern const char kAppListProfile[] = "app_list.profile"; | 2282 extern const char kAppListProfile[] = "app_list.profile"; |
2287 #endif | 2283 #endif |
2288 | 2284 |
2289 } // namespace prefs | 2285 } // namespace prefs |
OLD | NEW |