| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2006 Zack Rusin <zack@kde.org> |
| 3 * Copyright (C) 2006, 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2011 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 4 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 5 * Copyright (C) 2008 Collabora Ltd. All rights reserved. | 5 * Copyright (C) 2008 Collabora Ltd. All rights reserved. |
| 6 * | 6 * |
| 7 * All rights reserved. | 7 * All rights reserved. |
| 8 * | 8 * |
| 9 * Redistribution and use in source and binary forms, with or without | 9 * Redistribution and use in source and binary forms, with or without |
| 10 * modification, are permitted provided that the following conditions | 10 * modification, are permitted provided that the following conditions |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 virtual void dispatchDidLoadMainResource(DocumentLoader*); | 142 virtual void dispatchDidLoadMainResource(DocumentLoader*); |
| 143 virtual void revertToProvisionalState(DocumentLoader*); | 143 virtual void revertToProvisionalState(DocumentLoader*); |
| 144 virtual void setMainDocumentError(DocumentLoader*, const ResourceError&); | 144 virtual void setMainDocumentError(DocumentLoader*, const ResourceError&); |
| 145 | 145 |
| 146 virtual void postProgressStartedNotification(); | 146 virtual void postProgressStartedNotification(); |
| 147 virtual void postProgressEstimateChangedNotification(); | 147 virtual void postProgressEstimateChangedNotification(); |
| 148 virtual void postProgressFinishedNotification(); | 148 virtual void postProgressFinishedNotification(); |
| 149 | 149 |
| 150 virtual void setMainFrameDocumentReady(bool); | 150 virtual void setMainFrameDocumentReady(bool); |
| 151 | 151 |
| 152 virtual void startDownload(const WebCore::ResourceRequest&); | 152 virtual void startDownload(const WebCore::ResourceRequest&, const String& su
ggestedName = String()); |
| 153 | 153 |
| 154 virtual void willChangeTitle(DocumentLoader*); | 154 virtual void willChangeTitle(DocumentLoader*); |
| 155 virtual void didChangeTitle(DocumentLoader*); | 155 virtual void didChangeTitle(DocumentLoader*); |
| 156 | 156 |
| 157 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); | 157 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); |
| 158 virtual void finishedLoading(DocumentLoader*); | 158 virtual void finishedLoading(DocumentLoader*); |
| 159 | 159 |
| 160 virtual void updateGlobalHistory(); | 160 virtual void updateGlobalHistory(); |
| 161 virtual void updateGlobalHistoryRedirectLinks(); | 161 virtual void updateGlobalHistoryRedirectLinks(); |
| 162 virtual bool shouldGoToHistoryItem(HistoryItem*) const; | 162 virtual bool shouldGoToHistoryItem(HistoryItem*) const; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 // See finishedLoading(). | 278 // See finishedLoading(). |
| 279 bool m_hasRepresentation; | 279 bool m_hasRepresentation; |
| 280 | 280 |
| 281 KURL m_lastRequestedUrl; | 281 KURL m_lastRequestedUrl; |
| 282 ResourceError m_loadError; | 282 ResourceError m_loadError; |
| 283 }; | 283 }; |
| 284 | 284 |
| 285 } | 285 } |
| 286 | 286 |
| 287 #endif | 287 #endif |
| OLD | NEW |