Index: services/native_support/main.cc |
diff --git a/services/native_support/main.cc b/services/native_support/main.cc |
index 33aff0432e8696ca16ae11eca9216fb95a1006e7..11e8a7d0521a702fd467f6b67e8cbebed6c7a09d 100644 |
--- a/services/native_support/main.cc |
+++ b/services/native_support/main.cc |
@@ -37,13 +37,13 @@ class NativeSupportApp : public mojo::ApplicationDelegate, |
} |
// |InterfaceFactory<Process>| implementation: |
- void Create(mojo::ApplicationConnection* connection, |
+ void Create(const mojo::ConnectionContext& connection_context, |
mojo::InterfaceRequest<Process> request) override { |
if (!worker_pool_) { |
worker_pool_ = new base::SequencedWorkerPool(kMaxWorkerThreads, |
"NativeSupportWorker"); |
} |
- new ProcessImpl(worker_pool_, connection, request.Pass()); |
+ new ProcessImpl(worker_pool_, connection_context, request.Pass()); |
} |
scoped_refptr<base::SequencedWorkerPool> worker_pool_; |