| Index: services/tracing/mojo_tracing_application_factory.cc
|
| diff --git a/services/tracing/mojo_tracing_application_factory.cc b/services/tracing/mojo_tracing_application_factory.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3cb788d243ec1f35d712c58e608fce52f3eedb65
|
| --- /dev/null
|
| +++ b/services/tracing/mojo_tracing_application_factory.cc
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "services/tracing/mojo_tracing_application_factory.h"
|
| +
|
| +#include "base/memory/ptr_util.h"
|
| +#include "services/tracing/service.h"
|
| +
|
| +namespace tracing {
|
| +
|
| +// static
|
| +std::unique_ptr<service_manager::Service> CreateMojoTracingApplication(
|
| + const base::Closure& quit_closure) {
|
| + return std::unique_ptr<service_manager::Service>(new Service());
|
| +}
|
| +
|
| +} // namespace tracing
|
|
|