Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: services/tracing/tracing_app.cc

Issue 1882423004: Move shell service to toplevel shell namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/tracing/tracing_app.h ('k') | services/user/user_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
« no previous file with comments | « services/tracing/tracing_app.h ('k') | services/user/user_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698