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

Unified Diff: content/browser/utility_process_host_impl.h

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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 | « content/browser/udev_linux.h ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/utility_process_host_impl.h
diff --git a/content/browser/utility_process_host_impl.h b/content/browser/utility_process_host_impl.h
index 29f1dbab5ee987d814ae1c674cabf9e996a52005..b88f77d992a4ef548d3ef19235ee80855677c785 100644
--- a/content/browser/utility_process_host_impl.h
+++ b/content/browser/utility_process_host_impl.h
@@ -41,18 +41,18 @@ class CONTENT_EXPORT UtilityProcessHostImpl
virtual ~UtilityProcessHostImpl();
// UtilityProcessHost implementation:
- virtual bool Send(IPC::Message* message) OVERRIDE;
- virtual bool StartBatchMode() OVERRIDE;
- virtual void EndBatchMode() OVERRIDE;
- virtual void SetExposedDir(const base::FilePath& dir) OVERRIDE;
- virtual void EnableMDns() OVERRIDE;
- virtual void DisableSandbox() OVERRIDE;
+ virtual bool Send(IPC::Message* message) override;
+ virtual bool StartBatchMode() override;
+ virtual void EndBatchMode() override;
+ virtual void SetExposedDir(const base::FilePath& dir) override;
+ virtual void EnableMDns() override;
+ virtual void DisableSandbox() override;
#if defined(OS_WIN)
- virtual void ElevatePrivileges() OVERRIDE;
+ virtual void ElevatePrivileges() override;
#endif
- virtual const ChildProcessData& GetData() OVERRIDE;
+ virtual const ChildProcessData& GetData() override;
#if defined(OS_POSIX)
- virtual void SetEnv(const base::EnvironmentMap& env) OVERRIDE;
+ virtual void SetEnv(const base::EnvironmentMap& env) override;
#endif
void set_child_flags(int flags) { child_flags_ = flags; }
@@ -63,9 +63,9 @@ class CONTENT_EXPORT UtilityProcessHostImpl
bool StartProcess();
// BrowserChildProcessHost:
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void OnProcessLaunchFailed() OVERRIDE;
- virtual void OnProcessCrashed(int exit_code) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void OnProcessLaunchFailed() override;
+ virtual void OnProcessCrashed(int exit_code) override;
// A pointer to our client interface, who will be informed of progress.
scoped_refptr<UtilityProcessHostClient> client_;
« no previous file with comments | « content/browser/udev_linux.h ('k') | content/browser/utility_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698