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

Unified Diff: webkit/appcache/appcache_backend_impl.cc

Issue 8215002: base::Bind: Cleanup in test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix. Created 9 years, 2 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 | « webkit/appcache/appcache_backend_impl.h ('k') | webkit/appcache/appcache_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_backend_impl.cc
diff --git a/webkit/appcache/appcache_backend_impl.cc b/webkit/appcache/appcache_backend_impl.cc
index 44b3c47a786f8b85cf2b11eaa9a1c7703919abb5..9b132f4f91a6ebb406e4a737bbd1d6d31ccc5c4c 100644
--- a/webkit/appcache/appcache_backend_impl.cc
+++ b/webkit/appcache/appcache_backend_impl.cc
@@ -110,7 +110,7 @@ bool AppCacheBackendImpl::MarkAsForeignEntry(
}
bool AppCacheBackendImpl::GetStatusWithCallback(
- int host_id, GetStatusCallback* callback, void* callback_param) {
+ int host_id, const GetStatusCallback& callback, void* callback_param) {
AppCacheHost* host = GetHost(host_id);
if (!host)
return false;
@@ -120,7 +120,7 @@ bool AppCacheBackendImpl::GetStatusWithCallback(
}
bool AppCacheBackendImpl::StartUpdateWithCallback(
- int host_id, StartUpdateCallback* callback, void* callback_param) {
+ int host_id, const StartUpdateCallback& callback, void* callback_param) {
AppCacheHost* host = GetHost(host_id);
if (!host)
return false;
@@ -130,7 +130,7 @@ bool AppCacheBackendImpl::StartUpdateWithCallback(
}
bool AppCacheBackendImpl::SwapCacheWithCallback(
- int host_id, SwapCacheCallback* callback, void* callback_param) {
+ int host_id, const SwapCacheCallback& callback, void* callback_param) {
AppCacheHost* host = GetHost(host_id);
if (!host)
return false;
« no previous file with comments | « webkit/appcache/appcache_backend_impl.h ('k') | webkit/appcache/appcache_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698