| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) | 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) |
| 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 | 251 |
| 252 virtual PassRefPtr<Frame> createFrame(const KURL&, const String&, HTMLFrameO
wnerElement*, const String&, bool, int, int) { return 0; } | 252 virtual PassRefPtr<Frame> createFrame(const KURL&, const String&, HTMLFrameO
wnerElement*, const String&, bool, int, int) { return 0; } |
| 253 virtual Widget* createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&
, const Vector<String>&, const Vector<String>&, const String&, bool) { return 0;
} | 253 virtual Widget* createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&
, const Vector<String>&, const Vector<String>&, const String&, bool) { return 0;
} |
| 254 virtual Widget* createJavaAppletWidget(const IntSize&, HTMLAppletElement*, c
onst KURL&, const Vector<String>&, const Vector<String>&) { return 0; } | 254 virtual Widget* createJavaAppletWidget(const IntSize&, HTMLAppletElement*, c
onst KURL&, const Vector<String>&, const Vector<String>&) { return 0; } |
| 255 | 255 |
| 256 virtual ObjectContentType objectContentType(const KURL&, const String&) { re
turn ObjectContentType(); } | 256 virtual ObjectContentType objectContentType(const KURL&, const String&) { re
turn ObjectContentType(); } |
| 257 virtual String overrideMediaType() const { return String(); } | 257 virtual String overrideMediaType() const { return String(); } |
| 258 | 258 |
| 259 virtual void redirectDataToPlugin(Widget*) { } | 259 virtual void redirectDataToPlugin(Widget*) { } |
| 260 virtual void windowObjectCleared() { } | 260 virtual void windowObjectCleared() { } |
| 261 virtual void documentElementAvailable() { } | |
| 262 virtual void didPerformFirstNavigation() const { } | 261 virtual void didPerformFirstNavigation() const { } |
| 263 | 262 |
| 264 virtual void registerForIconNotification(bool) { } | 263 virtual void registerForIconNotification(bool) { } |
| 265 | 264 |
| 266 #if PLATFORM(MAC) | 265 #if PLATFORM(MAC) |
| 267 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned lon
g, NSCachedURLResponse* response) const { return response; } | 266 virtual NSCachedURLResponse* willCacheResponse(DocumentLoader*, unsigned lon
g, NSCachedURLResponse* response) const { return response; } |
| 268 #endif | 267 #endif |
| 269 | 268 |
| 270 }; | 269 }; |
| 271 | 270 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 | 406 |
| 408 virtual void populateSetting(const String&, InspectorController::Setting&) {
} | 407 virtual void populateSetting(const String&, InspectorController::Setting&) {
} |
| 409 virtual void storeSetting(const String&, const InspectorController::Setting&
) { } | 408 virtual void storeSetting(const String&, const InspectorController::Setting&
) { } |
| 410 virtual void removeSetting(const String&) { } | 409 virtual void removeSetting(const String&) { } |
| 411 }; | 410 }; |
| 412 | 411 |
| 413 } | 412 } |
| 414 | 413 |
| 415 #endif // EmptyClients_h | 414 #endif // EmptyClients_h |
| 416 | 415 |
| OLD | NEW |