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

Unified Diff: net/socket/client_socket_pool.h

Issue 1158193006: Converted bare pointer to scoped_ptr<> in net/socket and net/http (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: net/socket/client_socket_pool.h
diff --git a/net/socket/client_socket_pool.h b/net/socket/client_socket_pool.h
index 5404db6b59f66b22644706bd339e2b5362bfe1d6..c96d9ca80c5201c4341e265dc8a039e7b70c0e80 100644
--- a/net/socket/client_socket_pool.h
+++ b/net/socket/client_socket_pool.h
@@ -161,7 +161,7 @@ class NET_EXPORT ClientSocketPool : public LowerLayeredPool {
// DictionaryValue. Caller takes possession of the returned value.
eroman 2015/06/01 17:07:23 Remove comment about caller taking possesion
// If |include_nested_pools| is true, the states of any nested
// ClientSocketPools will be included.
- virtual base::DictionaryValue* GetInfoAsValue(
+ virtual scoped_ptr<base::DictionaryValue> GetInfoAsValue(
const std::string& name,
const std::string& type,
bool include_nested_pools) const = 0;

Powered by Google App Engine
This is Rietveld 408576698