Index: shell/test/pingable_app.cc |
diff --git a/shell/test/pingable_app.cc b/shell/test/pingable_app.cc |
index f65b6826d7439c19be22bf403b75c63440d20ed3..2436a7dcba4d70b46d8e975d3487ffc099123f01 100644 |
--- a/shell/test/pingable_app.cc |
+++ b/shell/test/pingable_app.cc |
@@ -58,9 +58,10 @@ class PingableApp : public mojo::ApplicationDelegate, |
} |
// InterfaceFactory<Pingable>: |
- void Create(mojo::ApplicationConnection* connection, |
+ void Create(const mojo::ConnectionContext& connection_context, |
mojo::InterfaceRequest<Pingable> request) override { |
- new PingableImpl(request.Pass(), app_url_, connection->GetConnectionURL()); |
+ new PingableImpl(request.Pass(), app_url_, |
+ connection_context.connection_url); |
} |
std::string app_url_; |