| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 const WebKit::WebString& name, | 46 const WebKit::WebString& name, |
| 47 unsigned long long document_id); | 47 unsigned long long document_id); |
| 48 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 48 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
| 49 WebKit::WebFrame* frame, | 49 WebKit::WebFrame* frame, |
| 50 const WebKit::WebURL& url, | 50 const WebKit::WebURL& url, |
| 51 WebKit::WebMediaPlayerClient* client); | 51 WebKit::WebMediaPlayerClient* client); |
| 52 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 52 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
| 53 WebKit::WebFrame* frame, | 53 WebKit::WebFrame* frame, |
| 54 WebKit::WebApplicationCacheHostClient* client); | 54 WebKit::WebApplicationCacheHostClient* client); |
| 55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 56 virtual WebKit::WebServiceWorkerProvider* createServiceWorkerProvider( |
| 57 WebKit::WebFrame* frame, |
| 58 WebKit::WebServiceWorkerProviderClient*); |
| 56 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); | 59 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
| 57 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, | 60 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, |
| 58 const WebKit::WebString& name); | 61 const WebKit::WebString& name); |
| 59 virtual void didDisownOpener(WebKit::WebFrame* frame); | 62 virtual void didDisownOpener(WebKit::WebFrame* frame); |
| 60 virtual void frameDetached(WebKit::WebFrame* frame); | 63 virtual void frameDetached(WebKit::WebFrame* frame); |
| 61 virtual void willClose(WebKit::WebFrame* frame); | 64 virtual void willClose(WebKit::WebFrame* frame); |
| 62 virtual void didChangeName(WebKit::WebFrame* frame, | 65 virtual void didChangeName(WebKit::WebFrame* frame, |
| 63 const WebKit::WebString& name); | 66 const WebKit::WebString& name); |
| 64 virtual void didMatchCSS( | 67 virtual void didMatchCSS( |
| 65 WebKit::WebFrame* frame, | 68 WebKit::WebFrame* frame, |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 int routing_id_; | 194 int routing_id_; |
| 192 bool is_swapped_out_; | 195 bool is_swapped_out_; |
| 193 bool is_detaching_; | 196 bool is_detaching_; |
| 194 | 197 |
| 195 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 198 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 196 }; | 199 }; |
| 197 | 200 |
| 198 } // namespace content | 201 } // namespace content |
| 199 | 202 |
| 200 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 203 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |