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

Unified Diff: components/nacl/browser/nacl_process_host.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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 | « components/nacl/browser/nacl_host_message_filter.h ('k') | components/nacl/browser/nacl_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/nacl_process_host.h
diff --git a/components/nacl/browser/nacl_process_host.h b/components/nacl/browser/nacl_process_host.h
index 1bb5288cf6966445b7ed7a9c9616d904129626ac..eb138b61809f2f383ad2bc3c0d0c7efdb0a25cf1 100644
--- a/components/nacl/browser/nacl_process_host.h
+++ b/components/nacl/browser/nacl_process_host.h
@@ -67,9 +67,9 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
bool off_the_record,
NaClAppProcessType process_type,
const base::FilePath& profile_directory);
- virtual ~NaClProcessHost();
+ ~NaClProcessHost() override;
- virtual void OnProcessCrashed(int exit_status) override;
+ void OnProcessCrashed(int exit_status) override;
// Do any minimal work that must be done at browser startup.
static void EarlyStartup();
@@ -83,7 +83,7 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
IPC::Message* reply_msg,
const base::FilePath& manifest_path);
- virtual void OnChannelConnected(int32 peer_pid) override;
+ void OnChannelConnected(int32 peer_pid) override;
#if defined(OS_WIN)
void OnProcessLaunchedByBroker(base::ProcessHandle handle);
@@ -117,8 +117,8 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
bool LaunchSelLdr();
// BrowserChildProcessHostDelegate implementation:
- virtual bool OnMessageReceived(const IPC::Message& msg) override;
- virtual void OnProcessLaunched() override;
+ bool OnMessageReceived(const IPC::Message& msg) override;
+ void OnProcessLaunched() override;
void OnResourcesReady();
« no previous file with comments | « components/nacl/browser/nacl_host_message_filter.h ('k') | components/nacl/browser/nacl_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698