| Index: content/public/renderer/render_frame.h
|
| ===================================================================
|
| --- content/public/renderer/render_frame.h (revision 239848)
|
| +++ content/public/renderer/render_frame.h (working copy)
|
| @@ -16,6 +16,7 @@
|
| }
|
|
|
| namespace content {
|
| +class RenderView;
|
| struct WebPluginInfo;
|
|
|
| // This interface wraps functionality, which is specific to frames, such as
|
| @@ -24,6 +25,9 @@
|
| class CONTENT_EXPORT RenderFrame : public IPC::Listener,
|
| public IPC::Sender {
|
| public:
|
| + // Returns the RenderView associated with this frame.
|
| + virtual RenderView* GetRenderView() = 0;
|
| +
|
| // Get the routing ID of the frame.
|
| virtual int GetRoutingID() = 0;
|
|
|
|
|