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

Unified Diff: mojo/shell/app_child_process_host.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
« no previous file with comments | « mojo/shell/app_child_process.cc ('k') | mojo/shell/child_process_host_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/app_child_process_host.h
diff --git a/mojo/shell/app_child_process_host.h b/mojo/shell/app_child_process_host.h
index f65e2a48f165dcb3c26d78a102e8b57b9d16166d..65fb15423cd7cb521b6c5fd6a9afabd022a92f9c 100644
--- a/mojo/shell/app_child_process_host.h
+++ b/mojo/shell/app_child_process_host.h
@@ -27,7 +27,7 @@ class AppChildProcessHost : public ChildProcessHost,
public:
AppChildProcessHost(Context* context,
AppChildControllerClient* controller_client);
- virtual ~AppChildProcessHost();
+ ~AppChildProcessHost() override;
AppChildController* controller() {
return controller_.get();
@@ -35,8 +35,8 @@ class AppChildProcessHost : public ChildProcessHost,
private:
// |ChildProcessHost::Delegate| methods:
- virtual void WillStart() override;
- virtual void DidStart(bool success) override;
+ void WillStart() override;
+ void DidStart(bool success) override;
// Callback for |embedder::CreateChannel()|.
void DidCreateChannel(embedder::ChannelInfo* channel_info);
« no previous file with comments | « mojo/shell/app_child_process.cc ('k') | mojo/shell/child_process_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698