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

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

Issue 8769024: base::Bind: Convert AppCacheHelper::DeleteAppCachesForOrigin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 9 years, 1 month 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 | « no previous file | webkit/appcache/appcache_quota_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_data_deleter.cc
diff --git a/chrome/browser/extensions/extension_data_deleter.cc b/chrome/browser/extensions/extension_data_deleter.cc
index 0ab97528fd0e8a6a6237318bb710163ae8ad5364..64becb8f088b15c5010d38c89817077fd4e9b9d1 100644
--- a/chrome/browser/extensions/extension_data_deleter.cc
+++ b/chrome/browser/extensions/extension_data_deleter.cc
@@ -24,7 +24,7 @@
using content::BrowserThread;
-/* static */
+// static
void ExtensionDataDeleter::StartDeleting(
Profile* profile,
const std::string& extension_id,
@@ -141,5 +141,6 @@ void ExtensionDataDeleter::DeleteFileSystemOnFileThread() {
void ExtensionDataDeleter::DeleteAppcachesOnIOThread() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
- appcache_service_->DeleteAppCachesForOrigin(storage_origin_, NULL);
+ appcache_service_->DeleteAppCachesForOrigin(
+ storage_origin_, net::CompletionCallback());
}
« no previous file with comments | « no previous file | webkit/appcache/appcache_quota_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698