| 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; |
| 161 |
| 160 virtual bool shouldGoToHistoryItem(HistoryItem*) const = 0; | 162 virtual bool shouldGoToHistoryItem(HistoryItem*) const = 0; |
| 161 | 163 |
| 162 virtual ResourceError cancelledError(const ResourceRequest&) = 0; | 164 virtual ResourceError cancelledError(const ResourceRequest&) = 0; |
| 163 virtual ResourceError blockedError(const ResourceRequest&) = 0; | 165 virtual ResourceError blockedError(const ResourceRequest&) = 0; |
| 164 virtual ResourceError cannotShowURLError(const ResourceRequest&) = 0; | 166 virtual ResourceError cannotShowURLError(const ResourceRequest&) = 0; |
| 165 virtual ResourceError interruptForPolicyChangeError(const ResourceReques
t&) = 0; | 167 virtual ResourceError interruptForPolicyChangeError(const ResourceReques
t&) = 0; |
| 166 | 168 |
| 167 virtual ResourceError cannotShowMIMETypeError(const ResourceResponse&) =
0; | 169 virtual ResourceError cannotShowMIMETypeError(const ResourceResponse&) =
0; |
| 168 virtual ResourceError fileDoesNotExistError(const ResourceResponse&) = 0
; | 170 virtual ResourceError fileDoesNotExistError(const ResourceResponse&) = 0
; |
| 169 virtual ResourceError pluginWillHandleLoadError(const ResourceResponse&)
= 0; | 171 virtual ResourceError pluginWillHandleLoadError(const ResourceResponse&)
= 0; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 #endif | 219 #endif |
| 218 | 220 |
| 219 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const {
return false; } | 221 virtual bool shouldUsePluginDocument(const String& /*mimeType*/) const {
return false; } |
| 220 }; | 222 }; |
| 221 | 223 |
| 222 } // namespace WebCore | 224 } // namespace WebCore |
| 223 | 225 |
| 224 #endif // FrameLoaderClient_h | 226 #endif // FrameLoaderClient_h |
| 225 | 227 |
| 226 | 228 |
| OLD | NEW |