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

Side by Side Diff: content/common/mojo/service_registry_impl.h

Issue 1686223002: Move InterfaceProvider into the shell::mojom namespace like the rest of the shell interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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 | « content/common/application_setup.mojom ('k') | content/common/mojo/service_registry_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 CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ 5 #ifndef CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_
6 #define CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ 6 #define CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
16 #include "content/public/common/service_registry.h" 16 #include "content/public/common/service_registry.h"
17 #include "mojo/public/cpp/bindings/binding.h" 17 #include "mojo/public/cpp/bindings/binding.h"
18 #include "mojo/public/cpp/system/core.h" 18 #include "mojo/public/cpp/system/core.h"
19 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" 19 #include "mojo/shell/public/interfaces/interface_provider.mojom.h"
20 20
21 namespace content { 21 namespace content {
22 22
23 class CONTENT_EXPORT ServiceRegistryImpl 23 class CONTENT_EXPORT ServiceRegistryImpl
24 : public ServiceRegistry, 24 : public ServiceRegistry,
25 public NON_EXPORTED_BASE(mojo::InterfaceProvider) { 25 public NON_EXPORTED_BASE(mojo::shell::mojom::InterfaceProvider) {
26 public: 26 public:
27 using ServiceFactory = base::Callback<void(mojo::ScopedMessagePipeHandle)>; 27 using ServiceFactory = base::Callback<void(mojo::ScopedMessagePipeHandle)>;
28 28
29 ServiceRegistryImpl(); 29 ServiceRegistryImpl();
30 ~ServiceRegistryImpl() override; 30 ~ServiceRegistryImpl() override;
31 31
32 // Binds this ServiceProvider implementation to a message pipe endpoint. 32 // Binds this ServiceProvider implementation to a message pipe endpoint.
33 void Bind(mojo::InterfaceRequest<mojo::InterfaceProvider> request); 33 void Bind(mojo::shell::mojom::InterfaceProviderRequest request);
34 34
35 // Binds to a remote ServiceProvider. This will expose added services to the 35 // Binds to a remote ServiceProvider. This will expose added services to the
36 // remote ServiceProvider with the corresponding handle and enable 36 // remote ServiceProvider with the corresponding handle and enable
37 // ConnectToRemoteService to provide access to services exposed by the remote 37 // ConnectToRemoteService to provide access to services exposed by the remote
38 // ServiceProvider. 38 // ServiceProvider.
39 void BindRemoteServiceProvider(mojo::InterfaceProviderPtr service_provider); 39 void BindRemoteServiceProvider(
40 mojo::shell::mojom::InterfaceProviderPtr service_provider);
40 41
41 // Registers a local service factory to intercept ConnectToRemoteService 42 // Registers a local service factory to intercept ConnectToRemoteService
42 // requests instead of actually connecting to the remote registry. Used only 43 // requests instead of actually connecting to the remote registry. Used only
43 // for testing. 44 // for testing.
44 void AddServiceOverrideForTesting(const std::string& service_name, 45 void AddServiceOverrideForTesting(const std::string& service_name,
45 const ServiceFactory& service_factory); 46 const ServiceFactory& service_factory);
46 47
47 // ServiceRegistry overrides. 48 // ServiceRegistry overrides.
48 void AddService(const std::string& service_name, 49 void AddService(const std::string& service_name,
49 const ServiceFactory service_factory) override; 50 const ServiceFactory service_factory) override;
50 void RemoveService(const std::string& service_name) override; 51 void RemoveService(const std::string& service_name) override;
51 void ConnectToRemoteService(const base::StringPiece& service_name, 52 void ConnectToRemoteService(const base::StringPiece& service_name,
52 mojo::ScopedMessagePipeHandle handle) override; 53 mojo::ScopedMessagePipeHandle handle) override;
53 54
54 bool IsBound() const; 55 bool IsBound() const;
55 56
56 base::WeakPtr<ServiceRegistry> GetWeakPtr(); 57 base::WeakPtr<ServiceRegistry> GetWeakPtr();
57 58
58 private: 59 private:
59 // mojo::InterfaceProvider overrides. 60 // mojo::InterfaceProvider overrides.
60 void GetInterface(const mojo::String& name, 61 void GetInterface(const mojo::String& name,
61 mojo::ScopedMessagePipeHandle client_handle) override; 62 mojo::ScopedMessagePipeHandle client_handle) override;
62 63
63 void OnConnectionError(); 64 void OnConnectionError();
64 65
65 mojo::Binding<mojo::InterfaceProvider> binding_; 66 mojo::Binding<mojo::shell::mojom::InterfaceProvider> binding_;
66 mojo::InterfaceProviderPtr remote_provider_; 67 mojo::shell::mojom::InterfaceProviderPtr remote_provider_;
67 68
68 std::map<std::string, ServiceFactory> service_factories_; 69 std::map<std::string, ServiceFactory> service_factories_;
69 std::queue<std::pair<std::string, mojo::MessagePipeHandle> > 70 std::queue<std::pair<std::string, mojo::MessagePipeHandle> >
70 pending_connects_; 71 pending_connects_;
71 72
72 std::map<std::string, ServiceFactory> service_overrides_; 73 std::map<std::string, ServiceFactory> service_overrides_;
73 74
74 base::WeakPtrFactory<ServiceRegistry> weak_factory_; 75 base::WeakPtrFactory<ServiceRegistry> weak_factory_;
75 }; 76 };
76 77
77 } // namespace content 78 } // namespace content
78 79
79 #endif // CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ 80 #endif // CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/application_setup.mojom ('k') | content/common/mojo/service_registry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698