| Index: chrome/browser/renderer_host/render_view_host.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_view_host.cc (revision 28235)
|
| +++ chrome/browser/renderer_host/render_view_host.cc (working copy)
|
| @@ -55,6 +55,7 @@
|
| using WebKit::WebDragOperationsMask;
|
| using WebKit::WebFindOptions;
|
| using WebKit::WebInputEvent;
|
| +using WebKit::WebMediaPlayerAction;
|
| using WebKit::WebTextDirection;
|
|
|
| namespace {
|
| @@ -1339,11 +1340,10 @@
|
| delegate_->ShowModalHTMLDialog(url, width, height, json_arguments, reply_msg);
|
| }
|
|
|
| -void RenderViewHost::MediaPlayerActionAt(int x,
|
| - int y,
|
| - const MediaPlayerAction& action) {
|
| +void RenderViewHost::MediaPlayerActionAt(const gfx::Point& location,
|
| + const WebMediaPlayerAction& action) {
|
| // TODO(ajwong): Which thread should run this? Does it matter?
|
| - Send(new ViewMsg_MediaPlayerActionAt(routing_id(), x, y, action));
|
| + Send(new ViewMsg_MediaPlayerActionAt(routing_id(), location, action));
|
| }
|
|
|
| void RenderViewHost::OnMsgPasswordFormsSeen(
|
|
|