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

Unified Diff: mojo/services/tracing/tracing_app.cc

Issue 1872903003: Generalize InterfacePtrSet for [Associated]InterfacePtr. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync and 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
Index: mojo/services/tracing/tracing_app.cc
diff --git a/mojo/services/tracing/tracing_app.cc b/mojo/services/tracing/tracing_app.cc
index d921a6d97b9d00038f049795a527f16b3a0c45fc..c38bfad2a19b66f451a1ccfcbc87502235bb06b8 100644
--- a/mojo/services/tracing/tracing_app.cc
+++ b/mojo/services/tracing/tracing_app.cc
@@ -38,7 +38,7 @@ bool TracingApp::AcceptConnection(mojo::Connection* connection) {
new TraceRecorderImpl(GetProxy(&recorder_ptr), sink_.get()));
provider_ptr->StartTracing(tracing_categories_, std::move(recorder_ptr));
}
- provider_ptrs_.AddInterfacePtr(std::move(provider_ptr));
+ provider_ptrs_.AddPtr(std::move(provider_ptr));
return true;
}

Powered by Google App Engine
This is Rietveld 408576698