Chromium Code Reviews| 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..81bd3f07cd19edf3efe16a43797863f66cd3eb3e 100644 |
| --- a/webkit/plugins/ppapi/fullscreen_container.h |
| +++ b/webkit/plugins/ppapi/fullscreen_container.h |
| @@ -9,6 +9,7 @@ |
| namespace WebKit { |
| struct WebRect; |
| +struct WebCursorInfo; |
|
Daniel Erat
2011/08/16 23:09:45
nit: alphabetize?
piman
2011/08/16 23:33:51
Done.
|
| } // namespace WebKit |
| 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; |
| }; |