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 184 matching lines...) Loading... |
195 // preparing to execute script. | 195 // preparing to execute script. |
196 virtual void didNotAllowScript() { } | 196 virtual void didNotAllowScript() { } |
197 // This callback is similar, but for plugins. | 197 // This callback is similar, but for plugins. |
198 virtual void didNotAllowPlugins() { } | 198 virtual void didNotAllowPlugins() { } |
199 | 199 |
200 // This callback notifies the client that the frame created a Keygen element
. | 200 // This callback notifies the client that the frame created a Keygen element
. |
201 virtual void didUseKeygen() { } | 201 virtual void didUseKeygen() { } |
202 | 202 |
203 virtual WebCookieJar* cookieJar() const = 0; | 203 virtual WebCookieJar* cookieJar() const = 0; |
204 | 204 |
205 virtual void didChangeName(const String&) { } | 205 virtual void didChangeName(const String& name, const String& uniqueName) { } |
206 | 206 |
207 virtual void didEnforceStrictMixedContentChecking() {} | 207 virtual void didEnforceStrictMixedContentChecking() {} |
208 | 208 |
209 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } | 209 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } |
210 | 210 |
211 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } | 211 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } |
212 | 212 |
213 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } | 213 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } |
214 | 214 |
215 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } | 215 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } |
(...skipping 33 matching lines...) Loading... |
249 BeforeUnloadHandler, | 249 BeforeUnloadHandler, |
250 UnloadHandler, | 250 UnloadHandler, |
251 }; | 251 }; |
252 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 252 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
253 | 253 |
254 }; | 254 }; |
255 | 255 |
256 } // namespace blink | 256 } // namespace blink |
257 | 257 |
258 #endif // FrameLoaderClient_h | 258 #endif // FrameLoaderClient_h |
OLD | NEW |