| Index: content/browser/plugin_process_host.cc
|
| diff --git a/content/browser/plugin_process_host.cc b/content/browser/plugin_process_host.cc
|
| index c2567595aa2d4f119551589e6c134a58f3c1316e..2c10b09889b8ebd0461335627bd128e2e80c9fd6 100644
|
| --- a/content/browser/plugin_process_host.cc
|
| +++ b/content/browser/plugin_process_host.cc
|
| @@ -104,7 +104,7 @@ class PluginSandboxedProcessLauncherDelegate
|
| #endif // OS_POSIX
|
| {}
|
|
|
| - virtual ~PluginSandboxedProcessLauncherDelegate() {}
|
| + ~PluginSandboxedProcessLauncherDelegate() override {}
|
|
|
| #if defined(OS_WIN)
|
| virtual bool ShouldSandbox() override {
|
| @@ -112,9 +112,7 @@ class PluginSandboxedProcessLauncherDelegate
|
| }
|
|
|
| #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:
|
|
|