| Index: webkit/glue/webview.h
|
| diff --git a/webkit/glue/webview.h b/webkit/glue/webview.h
|
| index 81d0094ff144f78847c4d1949b6ca22459ab0d3e..9250f36cef96a9780cb7eacfded87f590bc0b17f 100644
|
| --- a/webkit/glue/webview.h
|
| +++ b/webkit/glue/webview.h
|
| @@ -16,6 +16,7 @@ class WebDragData;
|
| struct WebPoint;
|
| }
|
|
|
| +struct MediaPlayerAction;
|
| struct WebPreferences;
|
| class GURL;
|
| class WebDevToolsAgent;
|
| @@ -230,6 +231,12 @@ class WebView : public WebKit::WebWidget {
|
| virtual void SetIsTransparent(bool is_transparent) = 0;
|
| virtual bool GetIsTransparent() const = 0;
|
|
|
| + // Performs an action from a context menu for the node at the given
|
| + // location.
|
| + virtual void MediaPlayerActionAt(int x,
|
| + int y,
|
| + const MediaPlayerAction& action) = 0;
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(WebView);
|
| };
|
|
|