| Index: services/tracing/tracing_app.cc
|
| diff --git a/services/tracing/tracing_app.cc b/services/tracing/tracing_app.cc
|
| index 845f6ba1cf16d16b715b177f8dff72aa519c4634..2dff117753aff7c297084b77d7a6b03616e717fa 100644
|
| --- a/services/tracing/tracing_app.cc
|
| +++ b/services/tracing/tracing_app.cc
|
| @@ -21,7 +21,7 @@ TracingApp::TracingApp() : collector_binding_(this), tracing_active_(false) {
|
| TracingApp::~TracingApp() {
|
| }
|
|
|
| -bool TracingApp::AcceptConnection(mojo::Connection* connection) {
|
| +bool TracingApp::AcceptConnection(shell::Connection* connection) {
|
| connection->AddInterface<TraceCollector>(this);
|
| connection->AddInterface<StartupPerformanceDataCollector>(this);
|
|
|
| @@ -50,13 +50,13 @@ bool TracingApp::ShellConnectionLost() {
|
| return false;
|
| }
|
|
|
| -void TracingApp::Create(mojo::Connection* connection,
|
| +void TracingApp::Create(shell::Connection* connection,
|
| mojo::InterfaceRequest<TraceCollector> request) {
|
| collector_binding_.Bind(std::move(request));
|
| }
|
|
|
| void TracingApp::Create(
|
| - mojo::Connection* connection,
|
| + shell::Connection* connection,
|
| mojo::InterfaceRequest<StartupPerformanceDataCollector> request) {
|
| startup_performance_data_collector_bindings_.AddBinding(this,
|
| std::move(request));
|
|
|