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 didChangeScrollingMode(Frame*, ScrollbarMode) { } |
| 195 virtual void didChangeMarginWidth(Frame*, int) { } |
| 196 virtual void didChangeMarginHeight(Frame*, int) { } |
| 197 |
194 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } | 198 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } |
195 | 199 |
196 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } | 200 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } |
197 | 201 |
198 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; | 202 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; |
199 | 203 |
200 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings
; } | 204 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings
; } |
201 // Informs the embedder that a WebGL canvas inside this frame received a los
t context | 205 // 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). | 206 // notification with the given GL_ARB_robustness guilt/innocence code (see E
xtensions3D.h). |
203 virtual void didLoseWebGLContext(int) { } | 207 virtual void didLoseWebGLContext(int) { } |
(...skipping 28 matching lines...) Expand all Loading... |
232 BeforeUnloadHandler, | 236 BeforeUnloadHandler, |
233 UnloadHandler, | 237 UnloadHandler, |
234 }; | 238 }; |
235 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 239 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
236 | 240 |
237 }; | 241 }; |
238 | 242 |
239 } // namespace blink | 243 } // namespace blink |
240 | 244 |
241 #endif // FrameLoaderClient_h | 245 #endif // FrameLoaderClient_h |
OLD | NEW |