Index: services/tracing/tracing_app.cc |
diff --git a/services/tracing/tracing_app.cc b/services/tracing/tracing_app.cc |
index 2dff117753aff7c297084b77d7a6b03616e717fa..e6ea96ec8b5580a0067dd52565257650ee3280e8 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(shell::Connection* connection) { |
+bool TracingApp::OnConnect(shell::Connection* connection) { |
connection->AddInterface<TraceCollector>(this); |
connection->AddInterface<StartupPerformanceDataCollector>(this); |
@@ -42,7 +42,7 @@ bool TracingApp::AcceptConnection(shell::Connection* connection) { |
return true; |
} |
-bool TracingApp::ShellConnectionLost() { |
+bool TracingApp::OnStop() { |
// TODO(beng): This is only required because TracingApp isn't run by |
// ApplicationRunner - instead it's launched automatically by the standalone |
// shell. It shouldn't be. |