Index: content/browser/renderer_host/render_widget_host_impl.cc |
=================================================================== |
--- content/browser/renderer_host/render_widget_host_impl.cc (revision 255633) |
+++ content/browser/renderer_host/render_widget_host_impl.cc (working copy) |
@@ -2233,16 +2233,6 @@ |
RecordAction(base::UserMetricsAction("Redo")); |
} |
-void RenderWidgetHostImpl::Cut() { |
- Send(new InputMsg_Cut(GetRoutingID())); |
- RecordAction(base::UserMetricsAction("Cut")); |
-} |
- |
-void RenderWidgetHostImpl::Copy() { |
- Send(new InputMsg_Copy(GetRoutingID())); |
- RecordAction(base::UserMetricsAction("Copy")); |
-} |
- |
void RenderWidgetHostImpl::CopyToFindPboard() { |
#if defined(OS_MACOSX) |
// Windows/Linux don't have the concept of a find pasteboard. |
@@ -2251,11 +2241,6 @@ |
#endif |
} |
-void RenderWidgetHostImpl::Paste() { |
- Send(new InputMsg_Paste(GetRoutingID())); |
- RecordAction(base::UserMetricsAction("Paste")); |
-} |
- |
void RenderWidgetHostImpl::PasteAndMatchStyle() { |
Send(new InputMsg_PasteAndMatchStyle(GetRoutingID())); |
RecordAction(base::UserMetricsAction("PasteAndMatchStyle")); |