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

Unified Diff: content/browser/utility_process_host_impl.cc

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/utility_process_host_impl.h ('k') | content/browser/vibration/vibration_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/utility_process_host_impl.cc
diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc
index 0f1fdf3fc5b8129759e2ae779dc9d313736cba27..36f90972503e1e01aa1daf7509d2fb12ae6a62d8 100644
--- a/content/browser/utility_process_host_impl.cc
+++ b/content/browser/utility_process_host_impl.cc
@@ -50,22 +50,22 @@ class UtilitySandboxedProcessLauncherDelegate
virtual ~UtilitySandboxedProcessLauncherDelegate() {}
#if defined(OS_WIN)
- virtual bool ShouldLaunchElevated() OVERRIDE {
+ virtual bool ShouldLaunchElevated() override {
return launch_elevated_;
}
virtual void PreSandbox(bool* disable_default_policy,
- base::FilePath* exposed_dir) OVERRIDE {
+ base::FilePath* exposed_dir) override {
*exposed_dir = exposed_dir_;
}
#elif defined(OS_POSIX)
- virtual bool ShouldUseZygote() OVERRIDE {
+ virtual bool ShouldUseZygote() override {
return !no_sandbox_ && exposed_dir_.empty();
}
- virtual base::EnvironmentMap GetEnvironment() OVERRIDE {
+ virtual base::EnvironmentMap GetEnvironment() override {
return env_;
}
- virtual int GetIpcFd() OVERRIDE {
+ virtual int GetIpcFd() override {
return ipc_fd_;
}
#endif // OS_WIN
« no previous file with comments | « content/browser/utility_process_host_impl.h ('k') | content/browser/vibration/vibration_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698