| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 5 #ifndef MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
| 6 #define MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 6 #define MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "mojo/public/shell/shell.mojom.h" | 13 #include "mojo/public/interfaces/shell/shell.mojom.h" |
| 14 #include "mojo/service_manager/service_manager_export.h" | 14 #include "mojo/service_manager/service_manager_export.h" |
| 15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class MojoTest; | 18 class MojoTest; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace mojo { | 21 namespace mojo { |
| 22 | 22 |
| 23 class ServiceLoader; | 23 class ServiceLoader; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 SchemeToLoaderMap scheme_to_loader_; | 78 SchemeToLoaderMap scheme_to_loader_; |
| 79 ServiceLoader* default_loader_; | 79 ServiceLoader* default_loader_; |
| 80 | 80 |
| 81 URLToServiceFactoryMap url_to_service_factory_; | 81 URLToServiceFactoryMap url_to_service_factory_; |
| 82 DISALLOW_COPY_AND_ASSIGN(ServiceManager); | 82 DISALLOW_COPY_AND_ASSIGN(ServiceManager); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace mojo | 85 } // namespace mojo |
| 86 | 86 |
| 87 #endif // MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ | 87 #endif // MOJO_SERVICE_MANAGER_SERVICE_MANAGER_H_ |
| OLD | NEW |