| Index: content/shell/shell_devtools_delegate_android.cc
|
| diff --git a/content/shell/shell_devtools_delegate_android.cc b/content/shell/shell_devtools_delegate_android.cc
|
| index 59098f9b7fca53d0f5212a90ee7bde086e66a965..60db1e60959114100ce070942c2f116efdcff74d 100644
|
| --- a/content/shell/shell_devtools_delegate_android.cc
|
| +++ b/content/shell/shell_devtools_delegate_android.cc
|
| @@ -27,7 +27,9 @@ const char kFrontEndURL[] =
|
|
|
| namespace content {
|
|
|
| -ShellDevToolsDelegate::ShellDevToolsDelegate(int port) {
|
| +ShellDevToolsDelegate::ShellDevToolsDelegate(BrowserContext* browser_context,
|
| + int port)
|
| + : browser_context_(browser_context) {
|
| devtools_http_handler_ = DevToolsHttpHandler::Start(
|
| new net::UnixDomainSocketWithAbstractNamespaceFactory(
|
| kSocketName,
|
| @@ -62,4 +64,8 @@ std::string ShellDevToolsDelegate::GetPageThumbnailData(const GURL& url) {
|
| return "";
|
| }
|
|
|
| +RenderViewHost* ShellDevToolsDelegate::CreateNewTarget() {
|
| + return NULL;
|
| +}
|
| +
|
| } // namespace content
|
|
|