| Index: mojo/apps/js/application_delegate_impl.h
|
| diff --git a/mojo/apps/js/application_delegate_impl.h b/mojo/apps/js/application_delegate_impl.h
|
| index 4c2f2e2083e8fe72c90338ec11f184eff32a216f..81a481cd356bc3a76be815561d7a17358c8693af 100644
|
| --- a/mojo/apps/js/application_delegate_impl.h
|
| +++ b/mojo/apps/js/application_delegate_impl.h
|
| @@ -29,7 +29,7 @@ class JSApp;
|
| class ApplicationDelegateImpl : public ApplicationDelegate {
|
| public:
|
| ApplicationDelegateImpl();
|
| - virtual ~ApplicationDelegateImpl();
|
| + ~ApplicationDelegateImpl() override;
|
|
|
| // Add app to the AppVector and call its Start() method.
|
| void StartJSApp(scoped_ptr<JSApp> app);
|
| @@ -43,7 +43,7 @@ class ApplicationDelegateImpl : public ApplicationDelegate {
|
|
|
| protected:
|
| // ApplicationDelegate:
|
| - virtual void Initialize(ApplicationImpl* app) override;
|
| + void Initialize(ApplicationImpl* app) override;
|
|
|
| private:
|
| typedef ScopedVector<JSApp> AppVector;
|
|
|