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

Unified Diff: content/browser/loader/stream_resource_handler.h

Issue 16294003: Update content/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased 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 | « content/browser/loader/resource_message_filter.h ('k') | content/browser/loader/stream_resource_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/loader/stream_resource_handler.h
diff --git a/content/browser/loader/stream_resource_handler.h b/content/browser/loader/stream_resource_handler.h
index f6c94ae63017f22b1f8b162b0e5702dd3ba6f33d..0f18f01fa298689e497eea158de7cf47284da881 100644
--- a/content/browser/loader/stream_resource_handler.h
+++ b/content/browser/loader/stream_resource_handler.h
@@ -63,7 +63,7 @@ class StreamResourceHandler : public StreamWriteObserver,
virtual void OnDataDownloaded(int request_id, int bytes_downloaded) OVERRIDE;
- Stream* stream() { return stream_; }
+ Stream* stream() { return stream_.get(); }
private:
virtual void OnSpaceAvailable(Stream* stream) OVERRIDE;
« no previous file with comments | « content/browser/loader/resource_message_filter.h ('k') | content/browser/loader/stream_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698