Index: examples/apptest/example_client_impl.h |
diff --git a/examples/apptest/example_client_impl.h b/examples/apptest/example_client_impl.h |
index 00c974bbfc6856d26ee6a48469769886287675a7..ec71901d4e22cfc341ffc5cc5a7c3ed8eae760ed 100644 |
--- a/examples/apptest/example_client_impl.h |
+++ b/examples/apptest/example_client_impl.h |
@@ -10,15 +10,15 @@ |
namespace mojo { |
-class ExampleClientImpl : public InterfaceImpl<ExampleClient> { |
+class ExampleClientImpl : public ExampleClient { |
public: |
ExampleClientImpl(); |
- virtual ~ExampleClientImpl(); |
+ ~ExampleClientImpl() override; |
int16_t last_pong_value() const { return last_pong_value_; } |
- // InterfaceImpl<ExampleClient> overrides. |
- virtual void Pong(uint16_t pong_value) override; |
+ // ExampleClient overrides. |
+ void Pong(uint16_t pong_value) override; |
private: |
int16_t last_pong_value_; |