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

Unified Diff: shell/context.cc

Issue 1926123002: Add a ctor for InterfaceRequest<I> that takes a ScopedMessagePipeHandle, and remove MakeRequest<I>(… (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 | « shell/android/android_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/context.cc
diff --git a/shell/context.cc b/shell/context.cc
index 101ea61cacefca4aaef791c6a8c3d70c18d37d87..8052e1b8caafb0414384fde6154a7061ea043bbf 100644
--- a/shell/context.cc
+++ b/shell/context.cc
@@ -204,7 +204,7 @@ class TracingServiceProvider : public ServiceProvider {
mojo::ScopedMessagePipeHandle client_handle) override {
if (tracer_ && service_name == tracing::TraceProvider::Name_) {
tracer_->ConnectToProvider(
- mojo::MakeRequest<tracing::TraceProvider>(client_handle.Pass()));
+ mojo::InterfaceRequest<tracing::TraceProvider>(client_handle.Pass()));
}
}
« no previous file with comments | « shell/android/android_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698