| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgent.h" | 5 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgent.h" |
| 6 #include "third_party/WebKit/WebKit/chromium/src/WebViewImpl.h" | 6 #include "third_party/WebKit/WebKit/chromium/src/WebViewImpl.h" |
| 7 | 7 |
| 8 #undef LOG | 8 #undef LOG |
| 9 #include "grit/webkit_resources.h" | 9 #include "grit/devtools_resources.h" |
| 10 #include "webkit/tools/test_shell/test_shell_devtools_agent.h" | 10 #include "webkit/tools/test_shell/test_shell_devtools_agent.h" |
| 11 #include "webkit/tools/test_shell/test_shell_devtools_callargs.h" | 11 #include "webkit/tools/test_shell/test_shell_devtools_callargs.h" |
| 12 #include "webkit/tools/test_shell/test_shell_devtools_client.h" | 12 #include "webkit/tools/test_shell/test_shell_devtools_client.h" |
| 13 #include "webkit/glue/webkit_glue.h" | 13 #include "webkit/glue/webkit_glue.h" |
| 14 | 14 |
| 15 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
| 16 | 16 |
| 17 using WebKit::WebCString; | 17 using WebKit::WebCString; |
| 18 using WebKit::WebDevToolsAgent; | 18 using WebKit::WebDevToolsAgent; |
| 19 using WebKit::WebDevToolsMessageData; | 19 using WebKit::WebDevToolsMessageData; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 return false; | 129 return false; |
| 130 agent->evaluateInWebInspector(call_id, WebString::fromUTF8(script)); | 130 agent->evaluateInWebInspector(call_id, WebString::fromUTF8(script)); |
| 131 return true; | 131 return true; |
| 132 } | 132 } |
| 133 | 133 |
| 134 // static | 134 // static |
| 135 void WebKit::WebDevToolsAgentClient::sendMessageToFrontendOnIOThread( | 135 void WebKit::WebDevToolsAgentClient::sendMessageToFrontendOnIOThread( |
| 136 WebKit::WebDevToolsMessageData const &) { | 136 WebKit::WebDevToolsMessageData const &) { |
| 137 NOTIMPLEMENTED(); | 137 NOTIMPLEMENTED(); |
| 138 } | 138 } |
| OLD | NEW |