| 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_SERVICE_H_ | 5 #ifndef COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_SERVICE_H_ |
| 6 #define COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_SERVICE_H_ | 6 #define COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 10 #include "components/devtools_service/devtools_registry_impl.h" | 12 #include "components/devtools_service/devtools_registry_impl.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/common/weak_binding_set.h" | 14 #include "mojo/common/weak_binding_set.h" |
| 13 | 15 |
| 14 namespace mojo { | 16 namespace mojo { |
| 15 class ApplicationImpl; | 17 class ApplicationImpl; |
| 16 } | 18 } |
| 17 | 19 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 46 | 48 |
| 47 scoped_ptr<DevToolsHttpServer> http_server_; | 49 scoped_ptr<DevToolsHttpServer> http_server_; |
| 48 DevToolsRegistryImpl registry_; | 50 DevToolsRegistryImpl registry_; |
| 49 | 51 |
| 50 DISALLOW_COPY_AND_ASSIGN(DevToolsService); | 52 DISALLOW_COPY_AND_ASSIGN(DevToolsService); |
| 51 }; | 53 }; |
| 52 | 54 |
| 53 } // namespace devtools_service | 55 } // namespace devtools_service |
| 54 | 56 |
| 55 #endif // COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_SERVICE_H_ | 57 #endif // COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_SERVICE_H_ |
| OLD | NEW |