| Index: content/browser/renderer_host/render_view_host_impl.cc
 | 
| diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
 | 
| index 109b6bf30c5f8971585e480d7db882daeb366c92..c15109936beef87d99e8020e2d5f0c456d2fb256 100644
 | 
| --- a/content/browser/renderer_host/render_view_host_impl.cc
 | 
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
 | 
| @@ -1252,14 +1252,6 @@ void RenderViewHostImpl::DisableAutoResize(const gfx::Size& new_size) {
 | 
|      GetWidget()->GetView()->SetSize(new_size);
 | 
|  }
 | 
|  
 | 
| -void RenderViewHostImpl::CopyImageAt(int x, int y) {
 | 
| -  Send(new ViewMsg_CopyImageAt(GetRoutingID(), x, y));
 | 
| -}
 | 
| -
 | 
| -void RenderViewHostImpl::SaveImageAt(int x, int y) {
 | 
| -  Send(new ViewMsg_SaveImageAt(GetRoutingID(), x, y));
 | 
| -}
 | 
| -
 | 
|  void RenderViewHostImpl::ExecuteMediaPlayerActionAtLocation(
 | 
|    const gfx::Point& location, const blink::WebMediaPlayerAction& action) {
 | 
|    Send(new ViewMsg_MediaPlayerActionAt(GetRoutingID(), location, action));
 | 
| 
 |