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

Unified Diff: chrome/browser/nacl_host/nacl_process_host.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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: chrome/browser/nacl_host/nacl_process_host.h
diff --git a/chrome/browser/nacl_host/nacl_process_host.h b/chrome/browser/nacl_host/nacl_process_host.h
index ce734914e3bccbf1448df404478d161693ebc294..1ccb0f8e19ae8b9813cf752ec546731d5b8de9c0 100644
--- a/chrome/browser/nacl_host/nacl_process_host.h
+++ b/chrome/browser/nacl_host/nacl_process_host.h
@@ -36,13 +36,14 @@ class NaClProcessHost : public BrowserChildProcessHost {
int socket_count,
IPC::Message* reply_msg);
- virtual bool OnMessageReceived(const IPC::Message& msg);
+ virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
void OnProcessLaunchedByBroker(base::ProcessHandle handle);
protected:
- virtual base::TerminationStatus GetChildTerminationStatus(int* exit_code);
- virtual void OnChildDied();
+ virtual base::TerminationStatus GetChildTerminationStatus(
+ int* exit_code) OVERRIDE;
+ virtual void OnChildDied() OVERRIDE;
private:
// Internal class that holds the nacl::Handle objecs so that
@@ -53,12 +54,12 @@ class NaClProcessHost : public BrowserChildProcessHost {
bool LaunchSelLdr();
- virtual void OnProcessLaunched();
+ virtual void OnProcessLaunched() OVERRIDE;
void IrtReady();
void SendStart(base::PlatformFile irt_file);
- virtual bool CanShutdown();
+ virtual bool CanShutdown() OVERRIDE;
private:
// The ChromeRenderMessageFilter that requested this NaCl process. We use

Powered by Google App Engine
This is Rietveld 408576698