| Index: content/browser/plugin_process_host.h
|
| diff --git a/content/browser/plugin_process_host.h b/content/browser/plugin_process_host.h
|
| index ffd072cf1963d101271e9e3eaf5626f07c63cadd..b56183fa9a684e825c758068c54e242c206ed071 100644
|
| --- a/content/browser/plugin_process_host.h
|
| +++ b/content/browser/plugin_process_host.h
|
| @@ -69,7 +69,7 @@ class CONTENT_EXPORT PluginProcessHost : public BrowserChildProcessHost {
|
| bool Init(const webkit::WebPluginInfo& info, const std::string& locale);
|
|
|
| // Force the plugin process to shutdown (cleanly).
|
| - virtual void ForceShutdown();
|
| + virtual void ForceShutdown() OVERRIDE;
|
|
|
| virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
|
| virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
|
| @@ -135,7 +135,7 @@ class CONTENT_EXPORT PluginProcessHost : public BrowserChildProcessHost {
|
| void OnPluginSetCursorVisibility(bool visible);
|
| #endif
|
|
|
| - virtual bool CanShutdown();
|
| + virtual bool CanShutdown() OVERRIDE;
|
|
|
| void CancelRequests();
|
|
|
|
|