| Index: mojo/application/content_handler_factory.h
|
| diff --git a/mojo/application/content_handler_factory.h b/mojo/application/content_handler_factory.h
|
| index 271655e06c9504d2446b14583bca331ed09aadcf..8b59bd924d66f5deb9c5b456dc4be8b525b7c6d9 100644
|
| --- a/mojo/application/content_handler_factory.h
|
| +++ b/mojo/application/content_handler_factory.h
|
| @@ -32,7 +32,7 @@ class ContentHandlerFactory : public InterfaceFactory<ContentHandler> {
|
|
|
| class ManagedDelegate : public Delegate {
|
| public:
|
| - virtual ~ManagedDelegate() {}
|
| + ~ManagedDelegate() override {}
|
| // Implement this method to create the Application for the given content.
|
| // This method will be called on a new thread. The application will be run
|
| // on this new thread, and the returned value will be kept alive until the
|
| @@ -47,7 +47,7 @@ class ContentHandlerFactory : public InterfaceFactory<ContentHandler> {
|
| };
|
|
|
| explicit ContentHandlerFactory(Delegate* delegate);
|
| - virtual ~ContentHandlerFactory();
|
| + ~ContentHandlerFactory() override;
|
|
|
| private:
|
| // From InterfaceFactory:
|
|
|