summaryrefslogtreecommitdiffstats
path: root/content/browser/gpu/gpu_process_host.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/gpu/gpu_process_host.cc')
-rw-r--r--content/browser/gpu/gpu_process_host.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc
index 0b4bfa8..7c181a8 100644
--- a/content/browser/gpu/gpu_process_host.cc
+++ b/content/browser/gpu/gpu_process_host.cc
@@ -153,7 +153,7 @@ class GpuSandboxedProcessLauncherDelegate
: ipc_fd_(host->TakeClientFileDescriptor()) {}
#endif
- virtual ~GpuSandboxedProcessLauncherDelegate() {}
+ ~GpuSandboxedProcessLauncherDelegate() override {}
#if defined(OS_WIN)
virtual bool ShouldSandbox() override {
@@ -250,9 +250,7 @@ class GpuSandboxedProcessLauncherDelegate
}
#elif defined(OS_POSIX)
- virtual base::ScopedFD TakeIpcFd() override {
- return ipc_fd_.Pass();
- }
+ base::ScopedFD TakeIpcFd() override { return ipc_fd_.Pass(); }
#endif // OS_WIN
private: