Index: examples/apptest/example_service_application.h |
diff --git a/examples/apptest/example_service_application.h b/examples/apptest/example_service_application.h |
index e0a8ceeb29781d628e9d94277d1f51ab23c1531c..3e8602e8143a3a7afbb36974965e51fa373d7629 100644 |
--- a/examples/apptest/example_service_application.h |
+++ b/examples/apptest/example_service_application.h |
@@ -7,15 +7,13 @@ |
#include "examples/apptest/example_service_impl.h" |
#include "mojo/public/cpp/application/application_delegate.h" |
-#include "mojo/public/cpp/application/interface_factory.h" |
#include "mojo/public/cpp/system/macros.h" |
namespace mojo { |
class ApplicationConnection; |
-class ExampleServiceApplication : public ApplicationDelegate, |
- public InterfaceFactory<ExampleService> { |
+class ExampleServiceApplication : public ApplicationDelegate { |
public: |
ExampleServiceApplication(); |
~ExampleServiceApplication() override; |
@@ -25,10 +23,6 @@ class ExampleServiceApplication : public ApplicationDelegate, |
bool ConfigureIncomingConnection( |
ApplicationConnection* connection) override; |
- // InterfaceFactory<ExampleService> implementation. |
- void Create(const ConnectionContext& connection_context, |
- InterfaceRequest<ExampleService> request) override; |
- |
MOJO_DISALLOW_COPY_AND_ASSIGN(ExampleServiceApplication); |
}; |