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

Unified Diff: content/shell/shell_devtools_delegate.cc

Issue 20142003: Remove ref-counting from StreamListenSocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixup Created 7 years, 5 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: content/shell/shell_devtools_delegate.cc
diff --git a/content/shell/shell_devtools_delegate.cc b/content/shell/shell_devtools_delegate.cc
index d6fe39cc6436d8fc5b07670d7f6a9927a20b8f30..abd075cca948ecfa9e552ac8355a27235fe5eae4 100644
--- a/content/shell/shell_devtools_delegate.cc
+++ b/content/shell/shell_devtools_delegate.cc
@@ -109,11 +109,11 @@ std::string ShellDevToolsDelegate::GetViewDescription(
return std::string();
}
-scoped_refptr<net::StreamListenSocket>
+scoped_ptr<net::StreamListenSocket>
ShellDevToolsDelegate::CreateSocketForTethering(
net::StreamListenSocket::Delegate* delegate,
std::string* name) {
- return NULL;
+ return scoped_ptr<net::StreamListenSocket>();
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698