| Index: mojo/services/tracing/public/cpp/tracing_impl.h
|
| diff --git a/mojo/services/tracing/public/cpp/tracing_impl.h b/mojo/services/tracing/public/cpp/tracing_impl.h
|
| index 97db1434edab70f839bccce5a90940d2294ea62e..42d0a746a04e4d4a1be0dc7bd37dc83671ab6c28 100644
|
| --- a/mojo/services/tracing/public/cpp/tracing_impl.h
|
| +++ b/mojo/services/tracing/public/cpp/tracing_impl.h
|
| @@ -12,7 +12,7 @@
|
|
|
| namespace mojo {
|
|
|
| -class ApplicationConnection;
|
| +class Connection;
|
| class Shell;
|
|
|
| // Connects to mojo:tracing during your Application's Initialize() call once
|
| @@ -36,10 +36,10 @@ class TracingImpl : public InterfaceFactory<tracing::TraceProvider> {
|
|
|
| private:
|
| // InterfaceFactory<tracing::TraceProvider> implementation.
|
| - void Create(ApplicationConnection* connection,
|
| + void Create(Connection* connection,
|
| InterfaceRequest<tracing::TraceProvider> request) override;
|
|
|
| - scoped_ptr<ApplicationConnection> connection_;
|
| + scoped_ptr<Connection> connection_;
|
| TraceProviderImpl provider_impl_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(TracingImpl);
|
|
|