| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ | 5 #ifndef CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ |
| 6 #define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ | 6 #define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "content/public/renderer/render_view_observer.h" | 12 #include "content/public/renderer/render_view_observer.h" |
| 13 #include "third_party/WebKit/public/web/WebDevToolsFrontendClient.h" | 13 #include "third_party/WebKit/public/web/WebDevToolsFrontendClient.h" |
| 14 | 14 |
| 15 namespace WebKit { | 15 namespace blink { |
| 16 class WebDevToolsFrontend; | 16 class WebDevToolsFrontend; |
| 17 class WebString; | 17 class WebString; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 | 21 |
| 22 class RenderViewImpl; | 22 class RenderViewImpl; |
| 23 | 23 |
| 24 // Developer tools UI end of communication channel between the render process of | 24 // Developer tools UI end of communication channel between the render process of |
| 25 // the page being inspected and tools UI renderer process. All messages will | 25 // the page being inspected and tools UI renderer process. All messages will |
| 26 // go through browser process. On the side of the inspected page there's | 26 // go through browser process. On the side of the inspected page there's |
| 27 // corresponding DevToolsAgent object. | 27 // corresponding DevToolsAgent object. |
| 28 // TODO(yurys): now the client is almost empty later it will delegate calls to | 28 // TODO(yurys): now the client is almost empty later it will delegate calls to |
| 29 // code in glue | 29 // code in glue |
| 30 class CONTENT_EXPORT DevToolsClient | 30 class CONTENT_EXPORT DevToolsClient |
| 31 : public RenderViewObserver, | 31 : public RenderViewObserver, |
| 32 NON_EXPORTED_BASE(public WebKit::WebDevToolsFrontendClient) { | 32 NON_EXPORTED_BASE(public blink::WebDevToolsFrontendClient) { |
| 33 public: | 33 public: |
| 34 explicit DevToolsClient(RenderViewImpl* render_view); | 34 explicit DevToolsClient(RenderViewImpl* render_view); |
| 35 virtual ~DevToolsClient(); | 35 virtual ~DevToolsClient(); |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 // RenderView::Observer implementation. | 38 // RenderView::Observer implementation. |
| 39 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 39 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
| 40 | 40 |
| 41 // WebDevToolsFrontendClient implementation. | 41 // WebDevToolsFrontendClient implementation. |
| 42 virtual void sendMessageToBackend(const WebKit::WebString&) OVERRIDE; | 42 virtual void sendMessageToBackend(const blink::WebString&) OVERRIDE; |
| 43 virtual void sendMessageToEmbedder(const WebKit::WebString&) OVERRIDE; | 43 virtual void sendMessageToEmbedder(const blink::WebString&) OVERRIDE; |
| 44 | 44 |
| 45 virtual bool isUnderTest() OVERRIDE; | 45 virtual bool isUnderTest() OVERRIDE; |
| 46 | 46 |
| 47 void OnDispatchOnInspectorFrontend(const std::string& message); | 47 void OnDispatchOnInspectorFrontend(const std::string& message); |
| 48 | 48 |
| 49 scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_; | 49 scoped_ptr<blink::WebDevToolsFrontend> web_tools_frontend_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(DevToolsClient); | 51 DISALLOW_COPY_AND_ASSIGN(DevToolsClient); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace content | 54 } // namespace content |
| 55 | 55 |
| 56 #endif // CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ | 56 #endif // CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ |
| OLD | NEW |