| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 // This callback notifies the client that the frame was about to run | 184 // This callback notifies the client that the frame was about to run |
| 185 // JavaScript but did not because allowScript returned false. We | 185 // JavaScript but did not because allowScript returned false. We |
| 186 // have a separate callback here because there are a number of places | 186 // have a separate callback here because there are a number of places |
| 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 // This callback notifies the client that the frame created a Keygen element
. |
| 194 virtual void usedKeygen() { } |
| 195 |
| 193 virtual WebCookieJar* cookieJar() const = 0; | 196 virtual WebCookieJar* cookieJar() const = 0; |
| 194 | 197 |
| 195 virtual void didChangeName(const String&) { } | 198 virtual void didChangeName(const String&) { } |
| 196 | 199 |
| 197 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } | 200 virtual void didChangeSandboxFlags(Frame* childFrame, SandboxFlags) { } |
| 198 | 201 |
| 199 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } | 202 virtual void didChangeFrameOwnerProperties(HTMLFrameElementBase*) { } |
| 200 | 203 |
| 201 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } | 204 virtual void dispatchWillOpenWebSocket(WebSocketHandle*) { } |
| 202 | 205 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 BeforeUnloadHandler, | 242 BeforeUnloadHandler, |
| 240 UnloadHandler, | 243 UnloadHandler, |
| 241 }; | 244 }; |
| 242 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } | 245 virtual void suddenTerminationDisablerChanged(bool present, SuddenTerminatio
nDisablerType) { } |
| 243 | 246 |
| 244 }; | 247 }; |
| 245 | 248 |
| 246 } // namespace blink | 249 } // namespace blink |
| 247 | 250 |
| 248 #endif // FrameLoaderClient_h | 251 #endif // FrameLoaderClient_h |
| OLD | NEW |