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

Side by Side Diff: mojo/public/cpp/application/interface_factory_impl.h

Issue 489493004: Update view manager to support content handling. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blah to the blizzah Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/public/cpp/application/lib/service_provider_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/public/cpp/application/lib/service_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698