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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 // that need to know if JavaScript is enabled but are not necessarily | 187 // that need to know if JavaScript is enabled but are not necessarily |
188 // preparing to execute script. | 188 // preparing to execute script. |
189 virtual void didNotAllowScript() { } | 189 virtual void didNotAllowScript() { } |
190 // This callback is similar, but for plugins. | 190 // This callback is similar, but for plugins. |
191 virtual void didNotAllowPlugins() { } | 191 virtual void didNotAllowPlugins() { } |
192 | 192 |
193 virtual WebCookieJar* cookieJar() const = 0; | 193 virtual WebCookieJar* cookieJar() const = 0; |
194 | 194 |
195 virtual void didChangeName(const String&) { } | 195 virtual void didChangeName(const String&) { } |
196 | 196 |
| 197 virtual void didEnforceStrictMixedContentChecking() {} |
| 198 |
197 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } | 199 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } |
198 | 200 |
199 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } | 201 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } |
200 | 202 |
201 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } | 203 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } |
202 | 204 |
203 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } | 205 virtual void dispatchWillStartUsingPeerConnectionHandler(WebRTCPeerConnectio
nHandler*) { } |
204 | 206 |
205 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; | 207 virtual void didRequestAutocomplete(HTMLFormElement*) = 0; |
206 | 208 |
(...skipping 30 matching lines...) Expand all Loading... |
237 BeforeUnloadHandler, | 239 BeforeUnloadHandler, |
238 UnloadHandler, | 240 UnloadHandler, |
239 }; | 241 }; |
240 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 242 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
241 | 243 |
242 }; | 244 }; |
243 | 245 |
244 } // namespace blink | 246 } // namespace blink |
245 | 247 |
246 #endif // FrameLoaderClient_h | 248 #endif // FrameLoaderClient_h |
OLD | NEW |