| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 virtual Widget* createJavaAppletWidget(const IntSize&, Element*, const K
URL& baseURL, const Vector<String>& paramNames, const Vector<String>& paramValue
s) = 0; | 192 virtual Widget* createJavaAppletWidget(const IntSize&, Element*, const K
URL& baseURL, const Vector<String>& paramNames, const Vector<String>& paramValue
s) = 0; |
| 193 | 193 |
| 194 virtual ObjectContentType objectContentType(const KURL& url, const Strin
g& mimeType) = 0; | 194 virtual ObjectContentType objectContentType(const KURL& url, const Strin
g& mimeType) = 0; |
| 195 virtual String overrideMediaType() const = 0; | 195 virtual String overrideMediaType() const = 0; |
| 196 | 196 |
| 197 virtual void windowObjectCleared() = 0; | 197 virtual void windowObjectCleared() = 0; |
| 198 virtual void didPerformFirstNavigation() const = 0; // "Navigation" here
means a transition from one page to another that ends up in the back/forward li
st. | 198 virtual void didPerformFirstNavigation() const = 0; // "Navigation" here
means a transition from one page to another that ends up in the back/forward li
st. |
| 199 | 199 |
| 200 virtual void registerForIconNotification(bool listen = true) = 0; | 200 virtual void registerForIconNotification(bool listen = true) = 0; |
| 201 | 201 |
| 202 virtual void unloadListenerChanged() = 0; | |
| 203 | |
| 204 #if PLATFORM(MAC) | 202 #if PLATFORM(MAC) |
| 205 #if ENABLE(MAC_JAVA_BRIDGE) | 203 #if ENABLE(MAC_JAVA_BRIDGE) |
| 206 virtual jobject javaApplet(NSView*) { return 0; } | 204 virtual jobject javaApplet(NSView*) { return 0; } |
| 207 #endif | 205 #endif |
| 208 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned
long identifier, NSCachedURLResponse*) const = 0; | 206 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned
long identifier, NSCachedURLResponse*) const = 0; |
| 209 #endif | 207 #endif |
| 210 }; | 208 }; |
| 211 | 209 |
| 212 } // namespace WebCore | 210 } // namespace WebCore |
| 213 | 211 |
| 214 #endif // FrameLoaderClient_h | 212 #endif // FrameLoaderClient_h |
| OLD | NEW |