| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv
ed. |
| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 | 172 |
| 173 // Maybe these should go into a ProgressTrackerClient some day | 173 // Maybe these should go into a ProgressTrackerClient some day |
| 174 virtual void willChangeEstimatedProgress() { } | 174 virtual void willChangeEstimatedProgress() { } |
| 175 virtual void didChangeEstimatedProgress() { } | 175 virtual void didChangeEstimatedProgress() { } |
| 176 virtual void postProgressStartedNotification() = 0; | 176 virtual void postProgressStartedNotification() = 0; |
| 177 virtual void postProgressEstimateChangedNotification() = 0; | 177 virtual void postProgressEstimateChangedNotification() = 0; |
| 178 virtual void postProgressFinishedNotification() = 0; | 178 virtual void postProgressFinishedNotification() = 0; |
| 179 | 179 |
| 180 virtual void setMainFrameDocumentReady(bool) = 0; | 180 virtual void setMainFrameDocumentReady(bool) = 0; |
| 181 | 181 |
| 182 virtual void startDownload(const ResourceRequest&) = 0; | 182 virtual void startDownload(const ResourceRequest&, const String& suggest
edName = String()) = 0; |
| 183 | 183 |
| 184 virtual void willChangeTitle(DocumentLoader*) = 0; | 184 virtual void willChangeTitle(DocumentLoader*) = 0; |
| 185 virtual void didChangeTitle(DocumentLoader*) = 0; | 185 virtual void didChangeTitle(DocumentLoader*) = 0; |
| 186 | 186 |
| 187 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; | 187 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; |
| 188 virtual void finishedLoading(DocumentLoader*) = 0; | 188 virtual void finishedLoading(DocumentLoader*) = 0; |
| 189 | 189 |
| 190 virtual void updateGlobalHistory() = 0; | 190 virtual void updateGlobalHistory() = 0; |
| 191 virtual void updateGlobalHistoryRedirectLinks() = 0; | 191 virtual void updateGlobalHistoryRedirectLinks() = 0; |
| 192 | 192 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 virtual void didNotAllowPlugins() { } | 313 virtual void didNotAllowPlugins() { } |
| 314 | 314 |
| 315 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0
; | 315 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0
; |
| 316 | 316 |
| 317 virtual bool shouldPaintBrokenImage(const KURL&) const { return true; } | 317 virtual bool shouldPaintBrokenImage(const KURL&) const { return true; } |
| 318 }; | 318 }; |
| 319 | 319 |
| 320 } // namespace WebCore | 320 } // namespace WebCore |
| 321 | 321 |
| 322 #endif // FrameLoaderClient_h | 322 #endif // FrameLoaderClient_h |
| OLD | NEW |