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 "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
9 #include "content/public/browser/android/devtools_auth.h" | 9 #include "content/public/browser/android/devtools_auth.h" |
10 #include "content/public/browser/devtools_http_handler.h" | 10 #include "content/public/browser/devtools_http_handler.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 content::RenderViewHost* AwDevToolsDelegate::CreateNewTarget() { | 111 content::RenderViewHost* AwDevToolsDelegate::CreateNewTarget() { |
112 return NULL; | 112 return NULL; |
113 } | 113 } |
114 | 114 |
115 content::DevToolsHttpHandlerDelegate::TargetType | 115 content::DevToolsHttpHandlerDelegate::TargetType |
116 AwDevToolsDelegate::GetTargetType(content::RenderViewHost*) { | 116 AwDevToolsDelegate::GetTargetType(content::RenderViewHost*) { |
117 return kTargetTypeTab; | 117 return kTargetTypeTab; |
118 } | 118 } |
119 | 119 |
| 120 std::string AwDevToolsDelegate::GetViewDescription(content::RenderViewHost*) { |
| 121 return ""; |
| 122 } |
| 123 |
120 } // namespace android_webview | 124 } // namespace android_webview |
OLD | NEW |