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

Unified Diff: webkit/appcache/appcache_test_helper.cc

Issue 16155009: Update webkit/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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_storage_unittest.cc ('k') | webkit/appcache/appcache_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_test_helper.cc
diff --git a/webkit/appcache/appcache_test_helper.cc b/webkit/appcache/appcache_test_helper.cc
index 497053435a1bc91ed5308a472ad64b6c3b9e0610..9db65fcfadbac21c5fdaf2011f2d823225f7beba 100644
--- a/webkit/appcache/appcache_test_helper.cc
+++ b/webkit/appcache/appcache_test_helper.cc
@@ -57,8 +57,9 @@ void AppCacheTestHelper::GetOriginsWithCaches(AppCacheService* appcache_service,
appcache_info_ = new AppCacheInfoCollection;
origins_ = origins;
appcache_service->GetAllAppCacheInfo(
- appcache_info_, base::Bind(&AppCacheTestHelper::OnGotAppCacheInfo,
- base::Unretained(this)));
+ appcache_info_.get(),
+ base::Bind(&AppCacheTestHelper::OnGotAppCacheInfo,
+ base::Unretained(this)));
// OnGotAppCacheInfo will quit the message loop.
base::MessageLoop::current()->Run();
« no previous file with comments | « webkit/appcache/appcache_storage_unittest.cc ('k') | webkit/appcache/appcache_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698