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

Side by Side Diff: mojo/public/cpp/application/lib/interface_factory_connector.h

Issue 1977123002: ApplicationConnection devolution, part 2.5. (Closed) Base URL: https://github.com/domokit/mojo.git@work790_app_conn_devo_2.4
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « mojo/public/cpp/application/interface_factory.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef MOJO_PUBLIC_CPP_APPLICATION_LIB_INTERFACE_FACTORY_CONNECTOR_H_
6 #define MOJO_PUBLIC_CPP_APPLICATION_LIB_INTERFACE_FACTORY_CONNECTOR_H_
7
8 #include "mojo/public/cpp/application/interface_factory.h"
9 #include "mojo/public/cpp/application/service_connector.h"
10 #include "mojo/public/cpp/bindings/interface_request.h"
11
12 namespace mojo {
13 namespace internal {
14
15 template <typename Interface>
16 class InterfaceFactoryConnector : public ServiceConnector {
17 public:
18 explicit InterfaceFactoryConnector(InterfaceFactory<Interface>* factory)
19 : factory_(factory) {}
20 ~InterfaceFactoryConnector() override {}
21
22 void ConnectToService(const ConnectionContext& connection_context,
23 const std::string& interface_name,
24 ScopedMessagePipeHandle client_handle) override {
25 factory_->Create(connection_context,
26 InterfaceRequest<Interface>(client_handle.Pass()));
27 }
28
29 private:
30 InterfaceFactory<Interface>* factory_;
31 MOJO_DISALLOW_COPY_AND_ASSIGN(InterfaceFactoryConnector);
32 };
33
34 } // namespace internal
35 } // namespace mojo
36
37 #endif // MOJO_PUBLIC_CPP_APPLICATION_LIB_INTERFACE_FACTORY_CONNECTOR_H_
OLDNEW
« no previous file with comments | « mojo/public/cpp/application/interface_factory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698