| Index: webkit/plugins/ppapi/fullscreen_container.h
|
| diff --git a/webkit/plugins/ppapi/fullscreen_container.h b/webkit/plugins/ppapi/fullscreen_container.h
|
| index 2e2338cfe386bb2bff724c0f17d696f2beb936f8..60cf8407f7c9769fdb6013d23e2357c1ffa0e146 100644
|
| --- a/webkit/plugins/ppapi/fullscreen_container.h
|
| +++ b/webkit/plugins/ppapi/fullscreen_container.h
|
| @@ -8,6 +8,7 @@
|
| #include "webkit/plugins/ppapi/plugin_delegate.h"
|
|
|
| namespace WebKit {
|
| +struct WebCursorInfo;
|
| struct WebRect;
|
| } // namespace WebKit
|
|
|
| @@ -33,6 +34,9 @@ class FullscreenContainer {
|
| // instance.
|
| virtual void Destroy() = 0;
|
|
|
| + // Notifies the container that the mouse cursor has changed.
|
| + virtual void DidChangeCursor(const WebKit::WebCursorInfo& cursor) = 0;
|
| +
|
| virtual PluginDelegate::PlatformContext3D* CreateContext3D() = 0;
|
| };
|
|
|
|
|