OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MOJO_PUBLIC_CPP_APPLICATION_INTERFACE_FACTORY_IMPL_H_ | 5 #ifndef MOJO_PUBLIC_CPP_APPLICATION_INTERFACE_FACTORY_IMPL_H_ |
6 #define MOJO_PUBLIC_CPP_APPLICATION_INTERFACE_FACTORY_IMPL_H_ | 6 #define MOJO_PUBLIC_CPP_APPLICATION_INTERFACE_FACTORY_IMPL_H_ |
7 | 7 |
8 #include "mojo/public/cpp/application/interface_factory.h" | 8 #include "mojo/public/cpp/application/interface_factory.h" |
9 | 9 |
10 namespace mojo { | 10 namespace mojo { |
(...skipping 17 matching lines...) Expand all Loading... |
28 // Impl is bound to the pipe. | 28 // Impl is bound to the pipe. |
29 template <typename Impl, | 29 template <typename Impl, |
30 typename Context, | 30 typename Context, |
31 typename Interface = typename Impl::ImplementedInterface> | 31 typename Interface = typename Impl::ImplementedInterface> |
32 class InterfaceFactoryImplWithContext : public InterfaceFactory<Interface> { | 32 class InterfaceFactoryImplWithContext : public InterfaceFactory<Interface> { |
33 public: | 33 public: |
34 explicit InterfaceFactoryImplWithContext(Context* context) | 34 explicit InterfaceFactoryImplWithContext(Context* context) |
35 : context_(context) {} | 35 : context_(context) {} |
36 virtual ~InterfaceFactoryImplWithContext() {} | 36 virtual ~InterfaceFactoryImplWithContext() {} |
37 | 37 |
| 38 void set_context(Context* context) { |
| 39 context_ = context; |
| 40 } |
| 41 |
38 virtual void Create(ApplicationConnection* connection, | 42 virtual void Create(ApplicationConnection* connection, |
39 InterfaceRequest<Interface> request) MOJO_OVERRIDE { | 43 InterfaceRequest<Interface> request) MOJO_OVERRIDE { |
40 BindToRequest(new Impl(context_), &request); | 44 BindToRequest(new Impl(context_), &request); |
41 } | 45 } |
42 | 46 |
43 private: | 47 private: |
44 Context* context_; | 48 Context* context_; |
45 }; | 49 }; |
46 | 50 |
47 } // namespace mojo | 51 } // namespace mojo |
48 | 52 |
49 #endif // MOJO_PUBLIC_CPP_APPLICATION_INTERFACE_FACTORY_IMPL_H_ | 53 #endif // MOJO_PUBLIC_CPP_APPLICATION_INTERFACE_FACTORY_IMPL_H_ |
OLD | NEW |