OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 virtual void didNotAllowScript() { } | 184 virtual void didNotAllowScript() { } |
185 // This callback is similar, but for plugins. | 185 // This callback is similar, but for plugins. |
186 virtual void didNotAllowPlugins() { } | 186 virtual void didNotAllowPlugins() { } |
187 | 187 |
188 virtual WebCookieJar* cookieJar() const = 0; | 188 virtual WebCookieJar* cookieJar() const = 0; |
189 | 189 |
190 virtual void didChangeName(const String&) { } | 190 virtual void didChangeName(const String&) { } |
191 | 191 |
192 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } | 192 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } |
193 | 193 |
| 194 virtual void didChangeFrameOwnerProperties(Frame*, ScrollbarMode, int, int)
{ } |
| 195 |
194 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } | 196 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } |
195 | 197 |
196 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } | 198 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } |
197 | 199 |
198 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; | 200 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; |
199 | 201 |
200 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings
; } | 202 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings
; } |
201 // Informs the embedder that a WebGL canvas inside this frame received a los
t context | 203 // Informs the embedder that a WebGL canvas inside this frame received a los
t context |
202 // notification with the given GL_ARB_robustness guilt/innocence code (see E
xtensions3D.h). | 204 // notification with the given GL_ARB_robustness guilt/innocence code (see E
xtensions3D.h). |
203 virtual void didLoseWebGLContext(int) { } | 205 virtual void didLoseWebGLContext(int) { } |
(...skipping 28 matching lines...) Expand all Loading... |
232 BeforeUnloadHandler, | 234 BeforeUnloadHandler, |
233 UnloadHandler, | 235 UnloadHandler, |
234 }; | 236 }; |
235 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 237 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
236 | 238 |
237 }; | 239 }; |
238 | 240 |
239 } // namespace blink | 241 } // namespace blink |
240 | 242 |
241 #endif // FrameLoaderClient_h | 243 #endif // FrameLoaderClient_h |
OLD | NEW |