| 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
|
|
|