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

Unified Diff: mojo/shell/application_manager.cc

Issue 1127293003: Update mojo sdk to rev f84766d3b6420b7cf6a113d9d65d73cb5fe18d90 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge IPC fixes Created 5 years, 7 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 | « mojo/shell/application_manager.h ('k') | third_party/mojo/mojo_public.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/application_manager.cc
diff --git a/mojo/shell/application_manager.cc b/mojo/shell/application_manager.cc
index 44a0c0d410501711eeab625b5a592601ac0fb1f9..6ac56ec665b0a5c41f3ea69f1a5b4b653304cc99 100644
--- a/mojo/shell/application_manager.cc
+++ b/mojo/shell/application_manager.cc
@@ -41,7 +41,7 @@ class ApplicationManager::ContentHandlerConnection : public ErrorHandler {
GetProxy(&services), nullptr,
base::Closure());
MessagePipe pipe;
- content_handler_.Bind(pipe.handle0.Pass());
+ content_handler_.Bind(InterfacePtrInfo<ContentHandler>(pipe.handle0.Pass(), 0u));
sky 2015/05/08 19:08:02 nit: > 80.
Ken Rockot(use gerrit already) 2015/05/08 19:12:47 Fixed
services->ConnectToService(ContentHandler::Name_, pipe.handle1.Pass());
content_handler_.set_error_handler(this);
}
« no previous file with comments | « mojo/shell/application_manager.h ('k') | third_party/mojo/mojo_public.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698