Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 183923030: Almost finish moving context_menu_node_ from RenderViewImpl to RenderFrameImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: sync Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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"));

Powered by Google App Engine
This is Rietveld 408576698