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

Unified Diff: webkit/appcache/mock_appcache_service.h

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 | « webkit/appcache/appcache_service_unittest.cc ('k') | webkit/appcache/mock_appcache_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/mock_appcache_service.h
diff --git a/webkit/appcache/mock_appcache_service.h b/webkit/appcache/mock_appcache_service.h
index f803c286ed82514be888bc8bf62b0280d9be2941..cd51d11be6d5267720f1522af84b888946582166 100644
--- a/webkit/appcache/mock_appcache_service.h
+++ b/webkit/appcache/mock_appcache_service.h
@@ -26,7 +26,7 @@ class MockAppCacheService : public AppCacheService {
// removing groups and caches in our mock storage instance.
virtual void DeleteAppCachesForOrigin(
const GURL& origin,
- net::OldCompletionCallback* callback) OVERRIDE;
+ const net::CompletionCallback& callback) OVERRIDE;
void set_quota_manager_proxy(quota::QuotaManagerProxy* proxy) {
quota_manager_proxy_ = proxy;
@@ -37,6 +37,7 @@ class MockAppCacheService : public AppCacheService {
}
int delete_called_count() const { return delete_called_count_; }
+
private:
int mock_delete_appcaches_for_origin_result_;
int delete_called_count_;
« no previous file with comments | « webkit/appcache/appcache_service_unittest.cc ('k') | webkit/appcache/mock_appcache_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698