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

Unified Diff: webkit/appcache/appcache.h

Issue 11189146: Eliminate implicit conversion from scoped_refptr<T> to T* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « ppapi/shared_impl/ppapi_globals.h ('k') | webkit/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache.h
diff --git a/webkit/appcache/appcache.h b/webkit/appcache/appcache.h
index daf9874f094bd28fc4774003737910edcbeae967..9bcfe12257458ea3d13f2300417d178a5db37491 100644
--- a/webkit/appcache/appcache.h
+++ b/webkit/appcache/appcache.h
@@ -36,7 +36,7 @@ class APPCACHE_EXPORT AppCache : public base::RefCounted<AppCache> {
int64 cache_id() const { return cache_id_; }
- AppCacheGroup* owning_group() const { return owning_group_; }
+ scoped_ptr<AppCacheGroup> owning_group() const { return owning_group_; }
bool is_complete() const { return is_complete_; }
void set_complete(bool value) { is_complete_ = value; }
« no previous file with comments | « ppapi/shared_impl/ppapi_globals.h ('k') | webkit/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698