| Index: content/renderer/pepper_plugin_delegate_impl.h
|
| diff --git a/content/renderer/pepper_plugin_delegate_impl.h b/content/renderer/pepper_plugin_delegate_impl.h
|
| index fc2e3576de30e149bb9cc96d38b7e70e4ab6748a..31c2bb0a8c52c86152d7a6b4754540690d7ee004 100644
|
| --- a/content/renderer/pepper_plugin_delegate_impl.h
|
| +++ b/content/renderer/pepper_plugin_delegate_impl.h
|
| @@ -30,6 +30,10 @@ class FilePath;
|
| class PepperPluginDelegateImpl;
|
| class RenderViewImpl;
|
|
|
| +namespace content {
|
| +class GamepadSharedMemoryReader;
|
| +}
|
| +
|
| namespace gfx {
|
| class Point;
|
| class Rect;
|
| @@ -50,6 +54,7 @@ class PluginModule;
|
|
|
| namespace WebKit {
|
| class WebFileChooserCompletion;
|
| +class WebGamepads;
|
| class WebMouseEvent;
|
| struct WebCompositionUnderline;
|
| struct WebFileChooserParams;
|
| @@ -382,6 +387,7 @@ class PepperPluginDelegateImpl
|
| virtual void DidReceiveMouseEvent(
|
| webkit::ppapi::PluginInstance* instance) OVERRIDE;
|
| virtual bool IsInFullscreenMode() OVERRIDE;
|
| + virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE;
|
|
|
| // RenderViewObserver implementation.
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| @@ -492,6 +498,8 @@ class PepperPluginDelegateImpl
|
| // when it is destroyed via InstanceDeleted().
|
| webkit::ppapi::PluginInstance* last_mouse_event_target_;
|
|
|
| + scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
|
| };
|
|
|
|
|