| 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 Apple Computer, Inc. All rights reserved. | 3 * Copyright (C) 2006 Apple Computer, 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 virtual void willChangeTitle(DocumentLoader*); | 148 virtual void willChangeTitle(DocumentLoader*); |
| 149 virtual void didChangeTitle(DocumentLoader*); | 149 virtual void didChangeTitle(DocumentLoader*); |
| 150 | 150 |
| 151 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); | 151 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); |
| 152 virtual void finishedLoading(DocumentLoader*); | 152 virtual void finishedLoading(DocumentLoader*); |
| 153 | 153 |
| 154 virtual void updateGlobalHistory(); | 154 virtual void updateGlobalHistory(); |
| 155 virtual void updateGlobalHistoryRedirectLinks(); | 155 virtual void updateGlobalHistoryRedirectLinks(); |
| 156 virtual bool shouldGoToHistoryItem(HistoryItem*) const; | 156 virtual bool shouldGoToHistoryItem(HistoryItem*) const; |
| 157 virtual bool shouldStopLoadingForHistoryItem(HistoryItem*) const; |
| 157 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const; | 158 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const; |
| 158 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const; | 159 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const; |
| 159 virtual void dispatchDidChangeBackForwardIndex() const; | 160 virtual void dispatchDidChangeBackForwardIndex() const; |
| 160 virtual void didDisplayInsecureContent(); | 161 virtual void didDisplayInsecureContent(); |
| 161 virtual void didRunInsecureContent(SecurityOrigin*); | 162 virtual void didRunInsecureContent(SecurityOrigin*); |
| 162 | 163 |
| 163 virtual ResourceError cancelledError(const ResourceRequest&); | 164 virtual ResourceError cancelledError(const ResourceRequest&); |
| 164 virtual ResourceError blockedError(const ResourceRequest&); | 165 virtual ResourceError blockedError(const ResourceRequest&); |
| 165 virtual ResourceError cannotShowURLError(const ResourceRequest&); | 166 virtual ResourceError cannotShowURLError(const ResourceRequest&); |
| 166 virtual ResourceError interruptForPolicyChangeError(const ResourceRequest&); | 167 virtual ResourceError interruptForPolicyChangeError(const ResourceRequest&); |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 // of a "representation", but we need to know when we're expected to have on
e. | 265 // of a "representation", but we need to know when we're expected to have on
e. |
| 265 // See finishedLoading(). | 266 // See finishedLoading(). |
| 266 bool m_hasRepresentation; | 267 bool m_hasRepresentation; |
| 267 | 268 |
| 268 ResourceError m_loadError; | 269 ResourceError m_loadError; |
| 269 }; | 270 }; |
| 270 | 271 |
| 271 } | 272 } |
| 272 | 273 |
| 273 #endif | 274 #endif |
| OLD | NEW |