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

Unified Diff: trunk/src/mojo/public/cpp/shell/application.h

Issue 287003004: Revert 270867 "Mojo: Internalize ServiceConnector<>" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/mojo/public/cpp/shell/application.h
===================================================================
--- trunk/src/mojo/public/cpp/shell/application.h (revision 270872)
+++ trunk/src/mojo/public/cpp/shell/application.h (working copy)
@@ -7,62 +7,25 @@
#include <vector>
-#include "mojo/public/cpp/shell/connect.h"
-#include "mojo/public/cpp/shell/lib/service_connector.h"
+#include "mojo/public/cpp/shell/service.h"
#include "mojo/public/cpp/system/core.h"
#include "mojo/public/interfaces/shell/shell.mojom.h"
namespace mojo {
-// Utility class for creating ShellClients that vend service instances.
-// To use define a class that implements your specific server api, e.g. FooImpl
-// to implement a service named Foo.
-// That class must subclass an InterfaceImpl specialization.
-//
-// If there is context that is to be shared amongst all instances, define a
-// constructor with that class as its only argument, otherwise define an empty
-// constructor.
-//
-// class FooImpl : public InterfaceImpl<Foo> {
-// public:
-// FooImpl() {}
-// };
-//
-// or
-//
-// class BarImpl : public InterfaceImpl<Bar> {
-// public:
-// // context will remain valid for the lifetime of BarImpl.
-// BarImpl(BarContext* context) : context_(context) {}
-// private:
-// BarContext* context;
-// };
-//
-// Create an Application instance that collects any service implementations.
-//
-// Application app(shell_handle);
-// app.AddService<FooImpl>();
-//
-// BarContext context;
-// app.AddService<BarImpl>(&context);
-//
-//
class Application : public internal::ServiceConnectorBase::Owner {
public:
explicit Application(ScopedMessagePipeHandle shell_handle);
explicit Application(MojoHandle shell_handle);
virtual ~Application();
- template <typename Impl, typename Context>
- void AddService(Context* context) {
- AddServiceConnector(new internal::ServiceConnector<Impl, Context>(context));
- }
+ // internal::ServiceConnectorBase::Owner methods.
+ // Takes ownership of |service_connector|.
+ virtual void AddServiceConnector(
+ internal::ServiceConnectorBase* service_connector) MOJO_OVERRIDE;
+ virtual void RemoveServiceConnector(
+ internal::ServiceConnectorBase* service_connector) MOJO_OVERRIDE;
- template <typename Impl>
- void AddService() {
- AddServiceConnector(new internal::ServiceConnector<Impl, void>(NULL));
- }
-
template <typename Interface>
void ConnectTo(const std::string& url, InterfacePtr<Interface>* ptr) {
mojo::ConnectTo(shell(), url, ptr);
@@ -70,20 +33,11 @@
protected:
// ShellClient methods.
- // Override this to dispatch to correct service when there's more than one.
- // TODO(davemoore): Augment this with name registration.
virtual void AcceptConnection(const mojo::String& url,
ScopedMessagePipeHandle client_handle)
MOJO_OVERRIDE;
private:
- // internal::ServiceConnectorBase::Owner methods.
- // Takes ownership of |service_connector|.
- virtual void AddServiceConnector(
- internal::ServiceConnectorBase* service_connector) MOJO_OVERRIDE;
- virtual void RemoveServiceConnector(
- internal::ServiceConnectorBase* service_connector) MOJO_OVERRIDE;
-
typedef std::vector<internal::ServiceConnectorBase*> ServiceConnectorList;
ServiceConnectorList service_connectors_;
};
« no previous file with comments | « trunk/src/mojo/public/cpp/bindings/tests/interface_ptr_unittest.cc ('k') | trunk/src/mojo/public/cpp/shell/connect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698