| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 virtual void startDownload(const ResourceRequest&) = 0; | 151 virtual void startDownload(const ResourceRequest&) = 0; |
| 152 | 152 |
| 153 virtual void willChangeTitle(DocumentLoader*) = 0; | 153 virtual void willChangeTitle(DocumentLoader*) = 0; |
| 154 virtual void didChangeTitle(DocumentLoader*) = 0; | 154 virtual void didChangeTitle(DocumentLoader*) = 0; |
| 155 | 155 |
| 156 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; | 156 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; |
| 157 virtual void finishedLoading(DocumentLoader*) = 0; | 157 virtual void finishedLoading(DocumentLoader*) = 0; |
| 158 | 158 |
| 159 virtual void updateGlobalHistory() = 0; | 159 virtual void updateGlobalHistory() = 0; |
| 160 virtual void updateGlobalHistoryForRedirectWithoutHistoryItem() = 0; | 160 virtual void updateGlobalHistoryRedirectLinks() = 0; |
| 161 | 161 |
| 162 virtual bool shouldGoToHistoryItem(HistoryItem*) const = 0; | 162 virtual bool shouldGoToHistoryItem(HistoryItem*) const = 0; |
| 163 | 163 |
| 164 virtual ResourceError cancelledError(const ResourceRequest&) = 0; | 164 virtual ResourceError cancelledError(const ResourceRequest&) = 0; |
| 165 virtual ResourceError blockedError(const ResourceRequest&) = 0; | 165 virtual ResourceError blockedError(const ResourceRequest&) = 0; |
| 166 virtual ResourceError cannotShowURLError(const ResourceRequest&) = 0; | 166 virtual ResourceError cannotShowURLError(const ResourceRequest&) = 0; |
| 167 virtual ResourceError interruptForPolicyChangeError(const ResourceReques
t&) = 0; | 167 virtual ResourceError interruptForPolicyChangeError(const ResourceReques
t&) = 0; |
| 168 | 168 |
| 169 virtual ResourceError cannotShowMIMETypeError(const ResourceResponse&) =
0; | 169 virtual ResourceError cannotShowMIMETypeError(const ResourceResponse&) =
0; |
| 170 virtual ResourceError fileDoesNotExistError(const ResourceResponse&) = 0
; | 170 virtual ResourceError fileDoesNotExistError(const ResourceResponse&) = 0
; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 #endif | 220 #endif |
| 221 | 221 |
| 222 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const {
return false; } | 222 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const {
return false; } |
| 223 }; | 223 }; |
| 224 | 224 |
| 225 } // namespace WebCore | 225 } // namespace WebCore |
| 226 | 226 |
| 227 #endif // FrameLoaderClient_h | 227 #endif // FrameLoaderClient_h |
| 228 | 228 |
| 229 | 229 |
| OLD | NEW |