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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 virtual void didUpdateToUniqueOrigin() {} | 218 virtual void didUpdateToUniqueOrigin() {} |
219 | 219 |
220 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } | 220 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } |
221 | 221 |
222 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } | 222 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } |
223 | 223 |
224 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } | 224 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } |
225 | 225 |
226 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } | 226 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } |
227 | 227 |
228 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; | |
229 | |
230 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings
; } | 228 virtual bool allowWebGL(bool enabledPerSettings) { return enabledPerSettings
; } |
231 | 229 |
232 // If an HTML document is being loaded, informs the embedder that the docume
nt will have its <body> attached soon. | 230 // If an HTML document is being loaded, informs the embedder that the docume
nt will have its <body> attached soon. |
233 virtual void dispatchWillInsertBody() { } | 231 virtual void dispatchWillInsertBody() { } |
234 | 232 |
235 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res
ourceLoadPriority, int intraPriorityValue) { } | 233 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res
ourceLoadPriority, int intraPriorityValue) { } |
236 | 234 |
237 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() =
0; | 235 virtual PassOwnPtr<WebServiceWorkerProvider> createServiceWorkerProvider() =
0; |
238 | 236 |
239 virtual bool isControlledByServiceWorker(DocumentLoader&) = 0; | 237 virtual bool isControlledByServiceWorker(DocumentLoader&) = 0; |
(...skipping 18 matching lines...) Expand all Loading... |
258 UnloadHandler, | 256 UnloadHandler, |
259 }; | 257 }; |
260 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 258 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
261 | 259 |
262 virtual LinkResource* createServiceWorkerLinkResource(HTMLLinkElement*) { re
turn nullptr; } | 260 virtual LinkResource* createServiceWorkerLinkResource(HTMLLinkElement*) { re
turn nullptr; } |
263 }; | 261 }; |
264 | 262 |
265 } // namespace blink | 263 } // namespace blink |
266 | 264 |
267 #endif // FrameLoaderClient_h | 265 #endif // FrameLoaderClient_h |
OLD | NEW |