OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "android_webview/browser/aw_devtools_delegate.h" | 5 #include "android_webview/browser/aw_devtools_delegate.h" |
6 | 6 |
7 #include "android_webview/browser/browser_view_renderer_impl.h" | 7 #include "android_webview/browser/browser_view_renderer_impl.h" |
8 #include "android_webview/browser/in_process_renderer/in_process_view_renderer.h
" | 8 #include "android_webview/browser/in_process_view_renderer.h" |
9 #include "android_webview/common/aw_switches.h" | 9 #include "android_webview/common/aw_switches.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/json/json_writer.h" | 12 #include "base/json/json_writer.h" |
13 #include "base/stringprintf.h" | 13 #include "base/stringprintf.h" |
14 #include "base/values.h" | 14 #include "base/values.h" |
15 #include "content/public/browser/android/devtools_auth.h" | 15 #include "content/public/browser/android/devtools_auth.h" |
16 #include "content/public/browser/devtools_http_handler.h" | 16 #include "content/public/browser/devtools_http_handler.h" |
17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
18 #include "content/public/common/url_constants.h" | 18 #include "content/public/common/url_constants.h" |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 } | 243 } |
244 | 244 |
245 scoped_refptr<net::StreamListenSocket> | 245 scoped_refptr<net::StreamListenSocket> |
246 AwDevToolsDelegate::CreateSocketForTethering( | 246 AwDevToolsDelegate::CreateSocketForTethering( |
247 net::StreamListenSocket::Delegate* delegate, | 247 net::StreamListenSocket::Delegate* delegate, |
248 std::string* name) { | 248 std::string* name) { |
249 return NULL; | 249 return NULL; |
250 } | 250 } |
251 | 251 |
252 } // namespace android_webview | 252 } // namespace android_webview |
OLD | NEW |