| 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 Collabora Ltd. All rights reserved. | 4 * Copyright (C) 2008 Collabora Ltd. All rights reserved. |
| 5 * | 5 * |
| 6 * All rights reserved. | 6 * All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 virtual void willChangeTitle(WebCore::DocumentLoader*); | 135 virtual void willChangeTitle(WebCore::DocumentLoader*); |
| 136 virtual void didChangeTitle(WebCore::DocumentLoader*); | 136 virtual void didChangeTitle(WebCore::DocumentLoader*); |
| 137 | 137 |
| 138 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); | 138 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); |
| 139 virtual void finishedLoading(WebCore::DocumentLoader*); | 139 virtual void finishedLoading(WebCore::DocumentLoader*); |
| 140 | 140 |
| 141 virtual void updateGlobalHistory(); | 141 virtual void updateGlobalHistory(); |
| 142 virtual void updateGlobalHistoryRedirectLinks(); | 142 virtual void updateGlobalHistoryRedirectLinks(); |
| 143 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; | 143 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; |
| 144 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) cons
t; |
| 144 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const; | 145 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const; |
| 145 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) con
st; | 146 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) con
st; |
| 146 virtual void dispatchDidChangeBackForwardIndex() const; | 147 virtual void dispatchDidChangeBackForwardIndex() const; |
| 147 | 148 |
| 148 virtual void didDisplayInsecureContent(); | 149 virtual void didDisplayInsecureContent(); |
| 149 virtual void didRunInsecureContent(WebCore::SecurityOrigin*); | 150 virtual void didRunInsecureContent(WebCore::SecurityOrigin*); |
| 150 | 151 |
| 151 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceReq
uest&); | 152 virtual WebCore::ResourceError cancelledError(const WebCore::ResourceReq
uest&); |
| 152 virtual WebCore::ResourceError blockedError(const WebCore::ResourceReque
st&); | 153 virtual WebCore::ResourceError blockedError(const WebCore::ResourceReque
st&); |
| 153 virtual WebCore::ResourceError cannotShowURLError(const WebCore::Resourc
eRequest&); | 154 virtual WebCore::ResourceError cannotShowURLError(const WebCore::Resourc
eRequest&); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 bool m_loadingErrorPage; | 200 bool m_loadingErrorPage; |
| 200 | 201 |
| 201 // Plugin view to redirect data to | 202 // Plugin view to redirect data to |
| 202 WebCore::PluginView* m_pluginView; | 203 WebCore::PluginView* m_pluginView; |
| 203 bool m_hasSentResponseToPlugin; | 204 bool m_hasSentResponseToPlugin; |
| 204 }; | 205 }; |
| 205 | 206 |
| 206 } | 207 } |
| 207 | 208 |
| 208 #endif | 209 #endif |
| OLD | NEW |