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

Unified Diff: mojo/apps/js/application_delegate_impl.h

Issue 668663006: Standardize usage of virtual/override/final in mojo/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
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;
« no previous file with comments | « mojo/application_manager/background_shell_application_loader_unittest.cc ('k') | mojo/apps/js/bindings/gl/context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698