| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 const String& referrer, bool allowsScrolling,
int marginWidth, int marginHeight) = 0; | 200 const String& referrer, bool allowsScrolling,
int marginWidth, int marginHeight) = 0; |
| 201 virtual Widget* createPlugin(const IntSize&, HTMLPlugInElement*, const K
URL&, const Vector<String>&, const Vector<String>&, const String&, bool loadManu
ally) = 0; | 201 virtual Widget* createPlugin(const IntSize&, HTMLPlugInElement*, const K
URL&, const Vector<String>&, const Vector<String>&, const String&, bool loadManu
ally) = 0; |
| 202 virtual void redirectDataToPlugin(Widget* pluginWidget) = 0; | 202 virtual void redirectDataToPlugin(Widget* pluginWidget) = 0; |
| 203 | 203 |
| 204 virtual Widget* createJavaAppletWidget(const IntSize&, HTMLAppletElement
*, const KURL& baseURL, const Vector<String>& paramNames, const Vector<String>&
paramValues) = 0; | 204 virtual Widget* createJavaAppletWidget(const IntSize&, HTMLAppletElement
*, const KURL& baseURL, const Vector<String>& paramNames, const Vector<String>&
paramValues) = 0; |
| 205 | 205 |
| 206 virtual ObjectContentType objectContentType(const KURL& url, const Strin
g& mimeType) = 0; | 206 virtual ObjectContentType objectContentType(const KURL& url, const Strin
g& mimeType) = 0; |
| 207 virtual String overrideMediaType() const = 0; | 207 virtual String overrideMediaType() const = 0; |
| 208 | 208 |
| 209 virtual void windowObjectCleared() = 0; | 209 virtual void windowObjectCleared() = 0; |
| 210 virtual void documentElementAvailable() = 0; |
| 210 virtual void didPerformFirstNavigation() const = 0; // "Navigation" here
means a transition from one page to another that ends up in the back/forward li
st. | 211 virtual void didPerformFirstNavigation() const = 0; // "Navigation" here
means a transition from one page to another that ends up in the back/forward li
st. |
| 211 | 212 |
| 212 virtual void registerForIconNotification(bool listen = true) = 0; | 213 virtual void registerForIconNotification(bool listen = true) = 0; |
| 213 | 214 |
| 214 #if PLATFORM(MAC) | 215 #if PLATFORM(MAC) |
| 215 #if ENABLE(MAC_JAVA_BRIDGE) | 216 #if ENABLE(MAC_JAVA_BRIDGE) |
| 216 virtual jobject javaApplet(NSView*) { return 0; } | 217 virtual jobject javaApplet(NSView*) { return 0; } |
| 217 #endif | 218 #endif |
| 218 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned
long identifier, NSCachedURLResponse*) const = 0; | 219 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned
long identifier, NSCachedURLResponse*) const = 0; |
| 219 #endif | 220 #endif |
| 220 | 221 |
| 221 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const {
return false; } | 222 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const {
return false; } |
| 222 }; | 223 }; |
| 223 | 224 |
| 224 } // namespace WebCore | 225 } // namespace WebCore |
| 225 | 226 |
| 226 #endif // FrameLoaderClient_h | 227 #endif // FrameLoaderClient_h |
| 227 | 228 |
| 228 | 229 |
| OLD | NEW |