| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef SERVICES_TRACING_MOJO_TRACING_APPLICATION_FACTORY_H_ |
| 6 #define SERVICES_TRACING_MOJO_TRACING_APPLICATION_FACTORY_H_ |
| 7 |
| 8 #include <memory> |
| 9 |
| 10 #include "base/callback_forward.h" |
| 11 #include "services/service_manager/public/cpp/service.h" |
| 12 |
| 13 namespace tracing { |
| 14 |
| 15 std::unique_ptr<service_manager::Service> CreateMojoTracingApplication( |
| 16 const base::Closure& quit_closure); |
| 17 |
| 18 } // namespace tracing |
| 19 |
| 20 #endif // #define SERVICES_TRACING_MOJO_TRACING_APPLICATION_FACTORY_H_ |
| OLD | NEW |