| 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; | |
| 20 class Value; | 19 class Value; |
| 21 } | 20 } |
| 22 | 21 |
| 23 namespace catalog { | 22 namespace catalog { |
| 24 class Catalog; | 23 class Catalog; |
| 25 } | 24 } |
| 26 | 25 |
| 27 namespace service_manager { | 26 namespace service_manager { |
| 28 | 27 |
| 29 class ServiceManager; | 28 class ServiceManager; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 53 std::unique_ptr<catalog::Catalog> catalog_; | 52 std::unique_ptr<catalog::Catalog> catalog_; |
| 54 std::unique_ptr<ServiceManager> service_manager_; | 53 std::unique_ptr<ServiceManager> service_manager_; |
| 55 base::Time main_entry_time_; | 54 base::Time main_entry_time_; |
| 56 | 55 |
| 57 DISALLOW_COPY_AND_ASSIGN(Context); | 56 DISALLOW_COPY_AND_ASSIGN(Context); |
| 58 }; | 57 }; |
| 59 | 58 |
| 60 } // namespace service_manager | 59 } // namespace service_manager |
| 61 | 60 |
| 62 #endif // SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ | 61 #endif // SERVICES_SERVICE_MANAGER_STANDALONE_CONTEXT_H_ |
| OLD | NEW |