OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_HTML_VIEWER_DEVTOOLS_AGENT_IMPL_H_ | 5 #ifndef COMPONENTS_HTML_VIEWER_DEVTOOLS_AGENT_IMPL_H_ |
6 #define COMPONENTS_HTML_VIEWER_DEVTOOLS_AGENT_IMPL_H_ | 6 #define COMPONENTS_HTML_VIEWER_DEVTOOLS_AGENT_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h
" | 12 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h
" |
| 13 #include "mojo/public/cpp/bindings/binding.h" |
13 #include "third_party/WebKit/public/web/WebDevToolsAgentClient.h" | 14 #include "third_party/WebKit/public/web/WebDevToolsAgentClient.h" |
14 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" | |
15 | 15 |
16 namespace blink { | 16 namespace blink { |
17 class WebLocalFrame; | 17 class WebLocalFrame; |
18 } | 18 } |
19 | 19 |
20 namespace html_viewer { | 20 namespace html_viewer { |
21 | 21 |
22 class DevToolsAgentImpl : public devtools_service::DevToolsAgent, | 22 class DevToolsAgentImpl : public devtools_service::DevToolsAgent, |
23 public blink::WebDevToolsAgentClient { | 23 public blink::WebDevToolsAgentClient { |
24 public: | 24 public: |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 mojo::String state; | 61 mojo::String state; |
62 }; | 62 }; |
63 std::vector<CachedClientMessage> cached_client_messages_; | 63 std::vector<CachedClientMessage> cached_client_messages_; |
64 | 64 |
65 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentImpl); | 65 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentImpl); |
66 }; | 66 }; |
67 | 67 |
68 } // namespace html_viewer | 68 } // namespace html_viewer |
69 | 69 |
70 #endif // COMPONENTS_HTML_VIEWER_DEVTOOLS_AGENT_IMPL_H_ | 70 #endif // COMPONENTS_HTML_VIEWER_DEVTOOLS_AGENT_IMPL_H_ |
OLD | NEW |