| 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 SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ | 5 #ifndef SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ |
| 6 #define SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ | 6 #define SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "services/service_manager/runner/host/service_process_launcher.h" | 14 #include "services/service_manager/runner/host/service_process_launcher.h" |
| 15 #include "services/service_manager/standalone/tracer.h" | 15 #include "services/service_manager/standalone/tracer.h" |
| 16 #include "services/tracing/public/cpp/provider.h" | 16 #include "services/tracing/public/cpp/provider.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class SequencedWorkerPool; |
| 19 class Value; | 20 class Value; |
| 20 } | 21 } |
| 21 | 22 |
| 22 namespace catalog { | 23 namespace catalog { |
| 23 class Catalog; | 24 class Catalog; |
| 24 } | 25 } |
| 25 | 26 |
| 26 namespace service_manager { | 27 namespace service_manager { |
| 27 | 28 |
| 28 class ServiceManager; | 29 class ServiceManager; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 52 std::unique_ptr<catalog::Catalog> catalog_; | 53 std::unique_ptr<catalog::Catalog> catalog_; |
| 53 std::unique_ptr<ServiceManager> service_manager_; | 54 std::unique_ptr<ServiceManager> service_manager_; |
| 54 base::Time main_entry_time_; | 55 base::Time main_entry_time_; |
| 55 | 56 |
| 56 DISALLOW_COPY_AND_ASSIGN(Context); | 57 DISALLOW_COPY_AND_ASSIGN(Context); |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 } // namespace service_manager | 60 } // namespace service_manager |
| 60 | 61 |
| 61 #endif // SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ | 62 #endif // SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ |
| OLD | NEW |