Index: content/browser/gpu/gpu_process_host.cc |
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc |
index e24b1555f37d2d5aa49b3947049ab9fed44a89f4..35019673a3cdb2b3b90ccdba66e1295826b81e99 100644 |
--- a/content/browser/gpu/gpu_process_host.cc |
+++ b/content/browser/gpu/gpu_process_host.cc |
@@ -156,7 +156,7 @@ class GpuSandboxedProcessLauncherDelegate |
virtual ~GpuSandboxedProcessLauncherDelegate() {} |
#if defined(OS_WIN) |
- virtual bool ShouldSandbox() OVERRIDE { |
+ virtual bool ShouldSandbox() override { |
bool sandbox = !cmd_line_->HasSwitch(switches::kDisableGpuSandbox); |
if(! sandbox) { |
DVLOG(1) << "GPU sandbox is disabled"; |
@@ -165,7 +165,7 @@ class GpuSandboxedProcessLauncherDelegate |
} |
virtual void PreSandbox(bool* disable_default_policy, |
- base::FilePath* exposed_dir) OVERRIDE { |
+ base::FilePath* exposed_dir) override { |
*disable_default_policy = true; |
} |
@@ -250,7 +250,7 @@ class GpuSandboxedProcessLauncherDelegate |
} |
#elif defined(OS_POSIX) |
- virtual int GetIpcFd() OVERRIDE { |
+ virtual int GetIpcFd() override { |
return ipc_fd_; |
} |
#endif // OS_WIN |