| Index: content/browser/plugin_loader_posix.h
|
| diff --git a/content/browser/plugin_loader_posix.h b/content/browser/plugin_loader_posix.h
|
| index 4745004368ebd93ab3f0af2d54c8f95f6fe58292..5b1580c17fa0e968b0feda0cdeb5099c11150fea 100644
|
| --- a/content/browser/plugin_loader_posix.h
|
| +++ b/content/browser/plugin_loader_posix.h
|
| @@ -55,14 +55,14 @@ class CONTENT_EXPORT PluginLoaderPosix
|
| void GetPlugins(const PluginService::GetPluginsCallback& callback);
|
|
|
| // UtilityProcessHostClient:
|
| - virtual void OnProcessCrashed(int exit_code) override;
|
| - virtual bool OnMessageReceived(const IPC::Message& message) override;
|
| + void OnProcessCrashed(int exit_code) override;
|
| + bool OnMessageReceived(const IPC::Message& message) override;
|
|
|
| // IPC::Sender:
|
| - virtual bool Send(IPC::Message* msg) override;
|
| + bool Send(IPC::Message* msg) override;
|
|
|
| private:
|
| - virtual ~PluginLoaderPosix();
|
| + ~PluginLoaderPosix() override;
|
|
|
| // Called on the FILE thread to get the list of plugin paths to probe.
|
| void GetPluginsToLoad();
|
|
|