| Index: services/tracing/tracing_app.cc
|
| diff --git a/services/tracing/tracing_app.cc b/services/tracing/tracing_app.cc
|
| index 8689d3a9a7752b11486380e3be0901fcfc71e8bf..6463c1362aa1e6000c22c333abf36a2ab48da543 100644
|
| --- a/services/tracing/tracing_app.cc
|
| +++ b/services/tracing/tracing_app.cc
|
| @@ -10,11 +10,9 @@
|
|
|
| namespace tracing {
|
|
|
| -TracingApp::TracingApp() : collector_binding_(this), tracing_active_(false) {
|
| -}
|
| +TracingApp::TracingApp() : tracing_active_(false) {}
|
|
|
| -TracingApp::~TracingApp() {
|
| -}
|
| +TracingApp::~TracingApp() {}
|
|
|
| bool TracingApp::ConfigureIncomingConnection(
|
| mojo::ApplicationConnection* connection) {
|
| @@ -40,7 +38,7 @@ bool TracingApp::ConfigureIncomingConnection(
|
| // mojo::InterfaceFactory<TraceCollector> implementation.
|
| void TracingApp::Create(mojo::ApplicationConnection* connection,
|
| mojo::InterfaceRequest<TraceCollector> request) {
|
| - collector_binding_.Bind(request.Pass());
|
| + collector_bindings_.AddBinding(this, request.Pass());
|
| }
|
|
|
| // tracing::TraceCollector implementation.
|
|
|