Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(770)

Unified Diff: mojo/application/content_handler_factory.h

Issue 988693005: Chromium roll (https://codereview.chromium.org/976353002) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fixed bad android build patch Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/perftests/texture_upload_perftest.cc ('k') | mojo/edk/system/data_pipe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « gpu/perftests/texture_upload_perftest.cc ('k') | mojo/edk/system/data_pipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698