| Index: webkit/plugins/ppapi/plugin_delegate.h
|
| diff --git a/webkit/plugins/ppapi/plugin_delegate.h b/webkit/plugins/ppapi/plugin_delegate.h
|
| index af93ec8deb5a49be1ff35fc83499b7f53edab761..3eb1b8dc1d57ff3236d9d505c6f0a5a0b7f672c6 100644
|
| --- a/webkit/plugins/ppapi/plugin_delegate.h
|
| +++ b/webkit/plugins/ppapi/plugin_delegate.h
|
| @@ -59,6 +59,7 @@ class PlatformCanvas;
|
|
|
| namespace WebKit {
|
| class WebFileChooserCompletion;
|
| +class WebGamepads;
|
| struct WebCursorInfo;
|
| struct WebFileChooserParams;
|
| }
|
| @@ -515,6 +516,9 @@ class PluginDelegate {
|
| // Determines if the browser entered fullscreen mode.
|
| virtual bool IsInFullscreenMode() = 0;
|
|
|
| + // Retrieve current gamepad data.
|
| + virtual void SampleGamepads(WebKit::WebGamepads* data) = 0;
|
| +
|
| // Returns true if the containing page is visible.
|
| virtual bool IsPageVisible() const = 0;
|
| };
|
|
|