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

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

Issue 11419307: Garbage Collect the Storage directory on next profile start after an extension uninstall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: small fixes. Created 8 years 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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after
1522 // accessed through extensions::ExternalPolicyProvider. 1522 // accessed through extensions::ExternalPolicyProvider.
1523 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; 1523 const char kExtensionInstallForceList[] = "extensions.install.forcelist";
1524 1524
1525 // Time of the last, and next scheduled, extensions auto-update checks. 1525 // Time of the last, and next scheduled, extensions auto-update checks.
1526 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; 1526 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check";
1527 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; 1527 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check";
1528 // Version number of last blacklist check 1528 // Version number of last blacklist check
1529 const char kExtensionBlacklistUpdateVersion[] = 1529 const char kExtensionBlacklistUpdateVersion[] =
1530 "extensions.blacklistupdate.version"; 1530 "extensions.blacklistupdate.version";
1531 1531
1532 // Indicates on-disk data might have skeletal data that needs to be cleaned
1533 // on the next start of the browser.
1534 const char kExtensionStorageGarbageCollect[] =
1535 "extensions.storage.garbagecollect";
1536
1532 // Keeps track of which sessions are collapsed in the Other Devices menu. 1537 // Keeps track of which sessions are collapsed in the Other Devices menu.
1533 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions"; 1538 const char kNtpCollapsedForeignSessions[] = "ntp.collapsed_foreign_sessions";
1534 1539
1535 // New Tab Page URLs that should not be shown as most visited thumbnails. 1540 // New Tab Page URLs that should not be shown as most visited thumbnails.
1536 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist"; 1541 const char kNtpMostVisitedURLsBlacklist[] = "ntp.most_visited_blacklist";
1537 1542
1538 // Last time of update of promo_resource_cache. 1543 // Last time of update of promo_resource_cache.
1539 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update"; 1544 const char kNtpPromoResourceCacheUpdate[] = "ntp.promo_resource_cache_update";
1540 1545
1541 // Serves tips for the NTP. 1546 // Serves tips for the NTP.
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
2164 2169
2165 #if defined(OS_CHROMEOS) 2170 #if defined(OS_CHROMEOS)
2166 // Indicates whether the RLZ tracking has been enabled by user. 2171 // Indicates whether the RLZ tracking has been enabled by user.
2167 const char kRLZEnabled[] = "rlz.enabled"; 2172 const char kRLZEnabled[] = "rlz.enabled";
2168 2173
2169 // The RLZ brand code, if enabled. 2174 // The RLZ brand code, if enabled.
2170 const char kRLZBrand[] = "rlz.brand"; 2175 const char kRLZBrand[] = "rlz.brand";
2171 #endif 2176 #endif
2172 2177
2173 } // namespace prefs 2178 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698