| 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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "content/public/renderer/render_frame.h" | 9 #include "content/public/renderer/render_frame.h" |
| 10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 // IPC::Sender | 33 // IPC::Sender |
| 34 virtual bool Send(IPC::Message* msg) OVERRIDE; | 34 virtual bool Send(IPC::Message* msg) OVERRIDE; |
| 35 | 35 |
| 36 // IPC::Listener | 36 // IPC::Listener |
| 37 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 37 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 38 | 38 |
| 39 // WebKit::WebFrameClient implementation ------------------------------------- | 39 // WebKit::WebFrameClient implementation ------------------------------------- |
| 40 virtual WebKit::WebPlugin* createPlugin( | 40 virtual WebKit::WebPlugin* createPlugin( |
| 41 WebKit::WebFrame* frame, | 41 WebKit::WebFrame* frame, |
| 42 const WebKit::WebPluginParams& params); | 42 const WebKit::WebPluginParams& params); |
| 43 virtual WebKit::WebSharedWorker* createSharedWorker( | |
| 44 WebKit::WebFrame* frame, | |
| 45 const WebKit::WebURL& url, | |
| 46 const WebKit::WebString& name, | |
| 47 unsigned long long document_id); | |
| 48 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 43 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
| 49 WebKit::WebFrame* frame, | 44 WebKit::WebFrame* frame, |
| 50 const WebKit::WebURL& url, | 45 const WebKit::WebURL& url, |
| 51 WebKit::WebMediaPlayerClient* client); | 46 WebKit::WebMediaPlayerClient* client); |
| 52 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 47 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
| 53 WebKit::WebFrame* frame, | 48 WebKit::WebFrame* frame, |
| 54 WebKit::WebApplicationCacheHostClient* client); | 49 WebKit::WebApplicationCacheHostClient* client); |
| 55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 50 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 56 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); | 51 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
| 57 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, | 52 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 int routing_id_; | 186 int routing_id_; |
| 192 bool is_swapped_out_; | 187 bool is_swapped_out_; |
| 193 bool is_detaching_; | 188 bool is_detaching_; |
| 194 | 189 |
| 195 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 190 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 196 }; | 191 }; |
| 197 | 192 |
| 198 } // namespace content | 193 } // namespace content |
| 199 | 194 |
| 200 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 195 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |