OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 virtual SiteInstance* GetSiteInstance() OVERRIDE; | 48 virtual SiteInstance* GetSiteInstance() OVERRIDE; |
49 virtual RenderProcessHost* GetProcess() OVERRIDE; | 49 virtual RenderProcessHost* GetProcess() OVERRIDE; |
50 virtual RenderFrameHost* GetParent() OVERRIDE; | 50 virtual RenderFrameHost* GetParent() OVERRIDE; |
51 virtual bool IsCrossProcessSubframe() OVERRIDE; | 51 virtual bool IsCrossProcessSubframe() OVERRIDE; |
52 virtual GURL GetLastCommittedURL() OVERRIDE; | 52 virtual GURL GetLastCommittedURL() OVERRIDE; |
53 virtual gfx::NativeView GetNativeView() OVERRIDE; | 53 virtual gfx::NativeView GetNativeView() OVERRIDE; |
54 virtual void NotifyContextMenuClosed( | 54 virtual void NotifyContextMenuClosed( |
55 const CustomContextMenuContext& context) OVERRIDE; | 55 const CustomContextMenuContext& context) OVERRIDE; |
56 virtual void ExecuteCustomContextMenuCommand( | 56 virtual void ExecuteCustomContextMenuCommand( |
57 int action, const CustomContextMenuContext& context) OVERRIDE; | 57 int action, const CustomContextMenuContext& context) OVERRIDE; |
| 58 virtual void Cut() OVERRIDE; |
| 59 virtual void Copy() OVERRIDE; |
| 60 virtual void Paste() OVERRIDE; |
58 virtual RenderViewHost* GetRenderViewHost() OVERRIDE; | 61 virtual RenderViewHost* GetRenderViewHost() OVERRIDE; |
59 | 62 |
60 // IPC::Sender | 63 // IPC::Sender |
61 virtual bool Send(IPC::Message* msg) OVERRIDE; | 64 virtual bool Send(IPC::Message* msg) OVERRIDE; |
62 | 65 |
63 // IPC::Listener | 66 // IPC::Listener |
64 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 67 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
65 | 68 |
66 void Init(); | 69 void Init(); |
67 int routing_id() const { return routing_id_; } | 70 int routing_id() const { return routing_id_; } |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 | 208 |
206 int routing_id_; | 209 int routing_id_; |
207 bool is_swapped_out_; | 210 bool is_swapped_out_; |
208 | 211 |
209 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 212 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
210 }; | 213 }; |
211 | 214 |
212 } // namespace content | 215 } // namespace content |
213 | 216 |
214 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 217 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |