| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Kevin Ollivier <kevino@theolliviers.com> | 2 * Copyright (C) 2007 Kevin Ollivier <kevino@theolliviers.com> |
| 3 * | 3 * |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 virtual void transitionToCommittedForNewPage(); | 153 virtual void transitionToCommittedForNewPage(); |
| 154 | 154 |
| 155 virtual void didSaveToPageCache(); | 155 virtual void didSaveToPageCache(); |
| 156 virtual void didRestoreFromPageCache(); | 156 virtual void didRestoreFromPageCache(); |
| 157 | 157 |
| 158 virtual void dispatchDidBecomeFrameset(bool); | 158 virtual void dispatchDidBecomeFrameset(bool); |
| 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; |
| 163 virtual bool shouldStopLoadingForHistoryItem(HistoryItem*) const; |
| 163 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const; | 164 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const; |
| 164 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const; | 165 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const; |
| 165 virtual void dispatchDidChangeBackForwardIndex() const; | 166 virtual void dispatchDidChangeBackForwardIndex() const; |
| 166 virtual void saveScrollPositionAndViewStateToItem(HistoryItem*); | 167 virtual void saveScrollPositionAndViewStateToItem(HistoryItem*); |
| 167 virtual bool canCachePage() const; | 168 virtual bool canCachePage() const; |
| 168 | 169 |
| 169 virtual void didDisplayInsecureContent(); | 170 virtual void didDisplayInsecureContent(); |
| 170 virtual void didRunInsecureContent(SecurityOrigin*); | 171 virtual void didRunInsecureContent(SecurityOrigin*); |
| 171 | 172 |
| 172 virtual void setMainDocumentError(DocumentLoader*, const ResourceError&)
; | 173 virtual void setMainDocumentError(DocumentLoader*, const ResourceError&)
; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 wxWebView *m_webView; | 237 wxWebView *m_webView; |
| 237 PluginView* m_pluginView; | 238 PluginView* m_pluginView; |
| 238 bool m_hasSentResponseToPlugin; | 239 bool m_hasSentResponseToPlugin; |
| 239 ResourceResponse m_response; | 240 ResourceResponse m_response; |
| 240 bool m_firstData; | 241 bool m_firstData; |
| 241 }; | 242 }; |
| 242 | 243 |
| 243 } | 244 } |
| 244 | 245 |
| 245 #endif | 246 #endif |
| OLD | NEW |