| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 virtual PassRefPtr<DocumentLoader> createDocumentLoader(const ResourceReques
t& request, const SubstituteData& substituteData) { return DocumentLoader::creat
e(request, substituteData); } | 237 virtual PassRefPtr<DocumentLoader> createDocumentLoader(const ResourceReques
t& request, const SubstituteData& substituteData) { return DocumentLoader::creat
e(request, substituteData); } |
| 238 virtual void setTitle(const String&, const KURL&) { } | 238 virtual void setTitle(const String&, const KURL&) { } |
| 239 | 239 |
| 240 virtual String userAgent(const KURL&) { return ""; } | 240 virtual String userAgent(const KURL&) { return ""; } |
| 241 | 241 |
| 242 virtual void savePlatformDataToCachedFrame(CachedFrame*) { } | 242 virtual void savePlatformDataToCachedFrame(CachedFrame*) { } |
| 243 virtual void transitionToCommittedFromCachedFrame(CachedFrame*) { } | 243 virtual void transitionToCommittedFromCachedFrame(CachedFrame*) { } |
| 244 virtual void transitionToCommittedForNewPage() { } | 244 virtual void transitionToCommittedForNewPage() { } |
| 245 | 245 |
| 246 virtual void updateGlobalHistory() { } | 246 virtual void updateGlobalHistory() { } |
| 247 virtual void updateGlobalHistoryForRedirectWithoutHistoryItem() { } |
| 247 virtual bool shouldGoToHistoryItem(HistoryItem*) const { return false; } | 248 virtual bool shouldGoToHistoryItem(HistoryItem*) const { return false; } |
| 248 virtual void saveViewStateToItem(HistoryItem*) { } | 249 virtual void saveViewStateToItem(HistoryItem*) { } |
| 249 virtual bool canCachePage() const { return false; } | 250 virtual bool canCachePage() const { return false; } |
| 250 | 251 |
| 251 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; } |
| 252 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;
} |
| 253 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; } |
| 254 | 255 |
| 255 virtual ObjectContentType objectContentType(const KURL&, const String&) { re
turn ObjectContentType(); } | 256 virtual ObjectContentType objectContentType(const KURL&, const String&) { re
turn ObjectContentType(); } |
| 256 virtual String overrideMediaType() const { return String(); } | 257 virtual String overrideMediaType() const { return String(); } |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 | 406 |
| 406 virtual void populateSetting(const String&, InspectorController::Setting&) {
} | 407 virtual void populateSetting(const String&, InspectorController::Setting&) {
} |
| 407 virtual void storeSetting(const String&, const InspectorController::Setting&
) { } | 408 virtual void storeSetting(const String&, const InspectorController::Setting&
) { } |
| 408 virtual void removeSetting(const String&) { } | 409 virtual void removeSetting(const String&) { } |
| 409 }; | 410 }; |
| 410 | 411 |
| 411 } | 412 } |
| 412 | 413 |
| 413 #endif // EmptyClients_h | 414 #endif // EmptyClients_h |
| 414 | 415 |
| OLD | NEW |