| 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_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ | 5 #ifndef COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ |
| 6 #define COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ | 6 #define COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/macros.h" | 12 #include "base/macros.h" |
| 11 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h
" | 13 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h
" |
| 12 #include "mojo/public/cpp/bindings/binding.h" | 14 #include "mojo/public/cpp/bindings/binding.h" |
| 13 #include "mojo/public/cpp/bindings/callback.h" | 15 #include "mojo/public/cpp/bindings/callback.h" |
| 14 | 16 |
| 15 namespace devtools_service { | 17 namespace devtools_service { |
| 16 | 18 |
| 17 // DevToolsAgentHost represents a DevTools agent at the service side. | 19 // DevToolsAgentHost represents a DevTools agent at the service side. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 mojo::Binding<DevToolsAgentClient> binding_; | 62 mojo::Binding<DevToolsAgentClient> binding_; |
| 61 | 63 |
| 62 Delegate* delegate_; | 64 Delegate* delegate_; |
| 63 | 65 |
| 64 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentHost); | 66 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentHost); |
| 65 }; | 67 }; |
| 66 | 68 |
| 67 } // namespace devtools_service | 69 } // namespace devtools_service |
| 68 | 70 |
| 69 #endif // COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ | 71 #endif // COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ |
| OLD | NEW |