| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 const blink::WebSecurityOrigin& security_origin, | 201 const blink::WebSecurityOrigin& security_origin, |
| 202 const blink::WebString& key_system); | 202 const blink::WebString& key_system); |
| 203 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( | 203 virtual blink::WebApplicationCacheHost* createApplicationCacheHost( |
| 204 blink::WebFrame* frame, | 204 blink::WebFrame* frame, |
| 205 blink::WebApplicationCacheHostClient* client); | 205 blink::WebApplicationCacheHostClient* client); |
| 206 virtual blink::WebWorkerPermissionClientProxy* | 206 virtual blink::WebWorkerPermissionClientProxy* |
| 207 createWorkerPermissionClientProxy(blink::WebFrame* frame); | 207 createWorkerPermissionClientProxy(blink::WebFrame* frame); |
| 208 virtual blink::WebCookieJar* cookieJar(blink::WebFrame* frame); | 208 virtual blink::WebCookieJar* cookieJar(blink::WebFrame* frame); |
| 209 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( | 209 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( |
| 210 blink::WebFrame* frame); | 210 blink::WebFrame* frame); |
| 211 virtual bool canCreatePluginWithoutRenderer( |
| 212 const blink::WebString& mimeType); |
| 211 virtual void didAccessInitialDocument(blink::WebFrame* frame); | 213 virtual void didAccessInitialDocument(blink::WebFrame* frame); |
| 212 virtual blink::WebFrame* createChildFrame(blink::WebFrame* parent, | 214 virtual blink::WebFrame* createChildFrame(blink::WebFrame* parent, |
| 213 const blink::WebString& name); | 215 const blink::WebString& name); |
| 214 virtual void didDisownOpener(blink::WebFrame* frame); | 216 virtual void didDisownOpener(blink::WebFrame* frame); |
| 215 virtual void frameDetached(blink::WebFrame* frame); | 217 virtual void frameDetached(blink::WebFrame* frame); |
| 216 virtual void frameFocused(); | 218 virtual void frameFocused(); |
| 217 virtual void willClose(blink::WebFrame* frame); | 219 virtual void willClose(blink::WebFrame* frame); |
| 218 virtual void didChangeName(blink::WebFrame* frame, | 220 virtual void didChangeName(blink::WebFrame* frame, |
| 219 const blink::WebString& name); | 221 const blink::WebString& name); |
| 220 virtual void didMatchCSS( | 222 virtual void didMatchCSS( |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 // Used to inform didChangeSelection() when it is called in the context | 505 // Used to inform didChangeSelection() when it is called in the context |
| 504 // of handling a InputMsg_SelectRange IPC. | 506 // of handling a InputMsg_SelectRange IPC. |
| 505 bool handling_select_range_; | 507 bool handling_select_range_; |
| 506 | 508 |
| 507 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 509 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 508 }; | 510 }; |
| 509 | 511 |
| 510 } // namespace content | 512 } // namespace content |
| 511 | 513 |
| 512 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 514 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |