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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 } | 244 } |
245 | 245 |
246 scoped_refptr<net::StreamListenSocket> | 246 scoped_refptr<net::StreamListenSocket> |
247 AwDevToolsDelegate::CreateSocketForTethering( | 247 AwDevToolsDelegate::CreateSocketForTethering( |
248 net::StreamListenSocket::Delegate* delegate, | 248 net::StreamListenSocket::Delegate* delegate, |
249 std::string* name) { | 249 std::string* name) { |
250 return NULL; | 250 return NULL; |
251 } | 251 } |
252 | 252 |
253 } // namespace android_webview | 253 } // namespace android_webview |
OLD | NEW |