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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 bool keep_selection); | 144 bool keep_selection); |
145 #endif // ENABLE_PLUGINS | 145 #endif // ENABLE_PLUGINS |
146 | 146 |
147 // IPC::Sender | 147 // IPC::Sender |
148 virtual bool Send(IPC::Message* msg) OVERRIDE; | 148 virtual bool Send(IPC::Message* msg) OVERRIDE; |
149 | 149 |
150 // IPC::Listener | 150 // IPC::Listener |
151 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 151 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
152 | 152 |
153 // RenderFrame implementation: | 153 // RenderFrame implementation: |
| 154 virtual RenderView* GetRenderView() OVERRIDE; |
154 virtual int GetRoutingID() OVERRIDE; | 155 virtual int GetRoutingID() OVERRIDE; |
155 virtual blink::WebPlugin* CreatePlugin( | 156 virtual blink::WebPlugin* CreatePlugin( |
156 blink::WebFrame* frame, | 157 blink::WebFrame* frame, |
157 const WebPluginInfo& info, | 158 const WebPluginInfo& info, |
158 const blink::WebPluginParams& params) OVERRIDE; | 159 const blink::WebPluginParams& params) OVERRIDE; |
159 | 160 |
160 // blink::WebFrameClient implementation ------------------------------------- | 161 // blink::WebFrameClient implementation ------------------------------------- |
161 virtual blink::WebPlugin* createPlugin( | 162 virtual blink::WebPlugin* createPlugin( |
162 blink::WebFrame* frame, | 163 blink::WebFrame* frame, |
163 const blink::WebPluginParams& params); | 164 const blink::WebPluginParams& params); |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 | 329 |
329 // All the registered observers. | 330 // All the registered observers. |
330 ObserverList<RenderFrameObserver> observers_; | 331 ObserverList<RenderFrameObserver> observers_; |
331 | 332 |
332 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 333 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
333 }; | 334 }; |
334 | 335 |
335 } // namespace content | 336 } // namespace content |
336 | 337 |
337 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 338 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |