| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 virtual String overrideMediaType() const = 0; | 245 virtual String overrideMediaType() const = 0; |
| 246 | 246 |
| 247 virtual void dispatchDidClearWindowObjectInWorld(DOMWrapperWorld*) = 0; | 247 virtual void dispatchDidClearWindowObjectInWorld(DOMWrapperWorld*) = 0; |
| 248 virtual void documentElementAvailable() = 0; | 248 virtual void documentElementAvailable() = 0; |
| 249 virtual void didPerformFirstNavigation() const = 0; // "Navigation" here
means a transition from one page to another that ends up in the back/forward li
st. | 249 virtual void didPerformFirstNavigation() const = 0; // "Navigation" here
means a transition from one page to another that ends up in the back/forward li
st. |
| 250 | 250 |
| 251 #if USE(V8) | 251 #if USE(V8) |
| 252 virtual void didCreateScriptContextForFrame() = 0; | 252 virtual void didCreateScriptContextForFrame() = 0; |
| 253 virtual void didDestroyScriptContextForFrame() = 0; | 253 virtual void didDestroyScriptContextForFrame() = 0; |
| 254 virtual void didCreateIsolatedScriptContext() = 0; | 254 virtual void didCreateIsolatedScriptContext() = 0; |
| 255 virtual bool allowScriptExtension(const String& extensionName, int exten
sionGroup) = 0; |
| 255 #endif | 256 #endif |
| 256 | 257 |
| 257 virtual void registerForIconNotification(bool listen = true) = 0; | 258 virtual void registerForIconNotification(bool listen = true) = 0; |
| 258 | 259 |
| 259 #if PLATFORM(MAC) | 260 #if PLATFORM(MAC) |
| 260 #if ENABLE(JAVA_BRIDGE) | 261 #if ENABLE(JAVA_BRIDGE) |
| 261 virtual jobject javaApplet(NSView*) { return 0; } | 262 virtual jobject javaApplet(NSView*) { return 0; } |
| 262 #endif | 263 #endif |
| 263 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned
long identifier, NSCachedURLResponse*) const = 0; | 264 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned
long identifier, NSCachedURLResponse*) const = 0; |
| 264 #endif | 265 #endif |
| (...skipping 18 matching lines...) Expand all Loading... |
| 283 virtual void didNotAllowScript() { } | 284 virtual void didNotAllowScript() { } |
| 284 // This callback is similar, but for plugins. | 285 // This callback is similar, but for plugins. |
| 285 virtual void didNotAllowPlugins() { } | 286 virtual void didNotAllowPlugins() { } |
| 286 | 287 |
| 287 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0
; | 288 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0
; |
| 288 }; | 289 }; |
| 289 | 290 |
| 290 } // namespace WebCore | 291 } // namespace WebCore |
| 291 | 292 |
| 292 #endif // FrameLoaderClient_h | 293 #endif // FrameLoaderClient_h |
| OLD | NEW |