Index: content/browser/frame_host/render_frame_host_impl.h |
=================================================================== |
--- content/browser/frame_host/render_frame_host_impl.h (revision 255719) |
+++ content/browser/frame_host/render_frame_host_impl.h (working copy) |
@@ -55,6 +55,9 @@ |
const CustomContextMenuContext& context) OVERRIDE; |
virtual void ExecuteCustomContextMenuCommand( |
int action, const CustomContextMenuContext& context) OVERRIDE; |
+ virtual void Cut() OVERRIDE; |
+ virtual void Copy() OVERRIDE; |
+ virtual void Paste() OVERRIDE; |
virtual void InsertCSS(const std::string& css) OVERRIDE; |
virtual RenderViewHost* GetRenderViewHost() OVERRIDE; |
@@ -150,6 +153,7 @@ |
// IPC Message handlers. |
void OnDetach(); |
+ void OnFrameFocused(); |
void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
void OnDidStartProvisionalLoadForFrame(int parent_routing_id, |
bool main_frame, |