| Index: examples/apptest/example_service_application.h
|
| diff --git a/examples/apptest/example_service_application.h b/examples/apptest/example_service_application.h
|
| index bb225145565baa73478ba58e33cb46a1783c63ab..7947b0041e615f9749c2b35580b3e9502d2d0a7b 100644
|
| --- a/examples/apptest/example_service_application.h
|
| +++ b/examples/apptest/example_service_application.h
|
| @@ -6,20 +6,19 @@
|
| #define MOJO_EXAMPLES_TEST_EXAMPLE_SERVICE_APPLICATION_H_
|
|
|
| #include "examples/apptest/example_service_impl.h"
|
| -#include "mojo/public/cpp/application/application_delegate.h"
|
| +#include "mojo/public/cpp/application/application_impl_base.h"
|
| #include "mojo/public/cpp/system/macros.h"
|
|
|
| namespace mojo {
|
|
|
| -class ExampleServiceApplication : public ApplicationDelegate {
|
| +class ExampleServiceApplication : public ApplicationImplBase {
|
| public:
|
| ExampleServiceApplication();
|
| ~ExampleServiceApplication() override;
|
|
|
| private:
|
| - // ApplicationDelegate implementation.
|
| - bool ConfigureIncomingConnection(
|
| - ServiceProviderImpl* service_provider_impl) override;
|
| + // ApplicationImplBase override.
|
| + bool OnAcceptConnection(ServiceProviderImpl* service_provider_impl) override;
|
|
|
| MOJO_DISALLOW_COPY_AND_ASSIGN(ExampleServiceApplication);
|
| };
|
|
|