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

Unified Diff: chrome/browser/extensions/extensions_service.cc

Issue 1695018: Adding ExtensionPrefs methods for storing update-when-idle data.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/extensions_service.h ('k') | chrome/browser/extensions/test_extension_prefs.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extensions_service.cc
===================================================================
--- chrome/browser/extensions/extensions_service.cc (revision 45592)
+++ chrome/browser/extensions/extensions_service.cc (working copy)
@@ -666,24 +666,6 @@
}
}
-void ExtensionsService::SetLastPingDay(const std::string& extension_id,
- const base::Time& time) {
- extension_prefs_->SetLastPingDay(extension_id, time);
-}
-
-base::Time ExtensionsService::LastPingDay(
- const std::string& extension_id) const {
- return extension_prefs_->LastPingDay(extension_id);
-}
-
-void ExtensionsService::SetBlacklistLastPingDay(const base::Time& time) {
- extension_prefs_->SetBlacklistLastPingDay(time);
-}
-
-base::Time ExtensionsService::BlacklistLastPingDay() const {
- return extension_prefs_->BlacklistLastPingDay();
-}
-
bool ExtensionsService::IsIncognitoEnabled(const Extension* extension) {
// If this is a component extension we always allow it to work in incognito
// mode.
« no previous file with comments | « chrome/browser/extensions/extensions_service.h ('k') | chrome/browser/extensions/test_extension_prefs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698