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* serviceWorkerProvider( | |
michaeln
2013/10/07 23:17:34
s/b createServiceWorkerProvider(...)
alecflett
2013/10/07 23:36:51
Hmm.. this was from an older value of the patch, n
| |
57 WebKit::WebFrame* frame); | |
56 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); | 58 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
57 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, | 59 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, |
58 const WebKit::WebString& name); | 60 const WebKit::WebString& name); |
59 virtual void didDisownOpener(WebKit::WebFrame* frame); | 61 virtual void didDisownOpener(WebKit::WebFrame* frame); |
60 virtual void frameDetached(WebKit::WebFrame* frame); | 62 virtual void frameDetached(WebKit::WebFrame* frame); |
61 virtual void willClose(WebKit::WebFrame* frame); | 63 virtual void willClose(WebKit::WebFrame* frame); |
62 virtual void didChangeName(WebKit::WebFrame* frame, | 64 virtual void didChangeName(WebKit::WebFrame* frame, |
63 const WebKit::WebString& name); | 65 const WebKit::WebString& name); |
64 virtual void didMatchCSS( | 66 virtual void didMatchCSS( |
65 WebKit::WebFrame* frame, | 67 WebKit::WebFrame* frame, |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
191 int routing_id_; | 193 int routing_id_; |
192 bool is_swapped_out_; | 194 bool is_swapped_out_; |
193 bool is_detaching_; | 195 bool is_detaching_; |
194 | 196 |
195 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 197 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
196 }; | 198 }; |
197 | 199 |
198 } // namespace content | 200 } // namespace content |
199 | 201 |
200 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 202 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |