OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 virtual void willChangeTitle(DocumentLoader*) = 0; | 180 virtual void willChangeTitle(DocumentLoader*) = 0; |
181 virtual void didChangeTitle(DocumentLoader*) = 0; | 181 virtual void didChangeTitle(DocumentLoader*) = 0; |
182 | 182 |
183 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; | 183 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; |
184 virtual void finishedLoading(DocumentLoader*) = 0; | 184 virtual void finishedLoading(DocumentLoader*) = 0; |
185 | 185 |
186 virtual void updateGlobalHistory() = 0; | 186 virtual void updateGlobalHistory() = 0; |
187 virtual void updateGlobalHistoryRedirectLinks() = 0; | 187 virtual void updateGlobalHistoryRedirectLinks() = 0; |
188 | 188 |
189 virtual bool shouldGoToHistoryItem(HistoryItem*) const = 0; | 189 virtual bool shouldGoToHistoryItem(HistoryItem*) const = 0; |
| 190 virtual bool shouldStopLoadingForHistoryItem(HistoryItem*) const = 0; |
190 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const = 0; | 191 virtual void dispatchDidAddBackForwardItem(HistoryItem*) const = 0; |
191 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const = 0; | 192 virtual void dispatchDidRemoveBackForwardItem(HistoryItem*) const = 0; |
192 virtual void dispatchDidChangeBackForwardIndex() const = 0; | 193 virtual void dispatchDidChangeBackForwardIndex() const = 0; |
193 | 194 |
194 // This frame has displayed inactive content (such as an image) from an | 195 // This frame has displayed inactive content (such as an image) from an |
195 // insecure source. Inactive content cannot spread to other frames. | 196 // insecure source. Inactive content cannot spread to other frames. |
196 virtual void didDisplayInsecureContent() = 0; | 197 virtual void didDisplayInsecureContent() = 0; |
197 | 198 |
198 // The indicated security origin has run active content (such as a | 199 // The indicated security origin has run active content (such as a |
199 // script) from an insecure source. Note that the insecure content can | 200 // script) from an insecure source. Note that the insecure content can |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 virtual void didNotAllowScript() { } | 303 virtual void didNotAllowScript() { } |
303 // This callback is similar, but for plugins. | 304 // This callback is similar, but for plugins. |
304 virtual void didNotAllowPlugins() { } | 305 virtual void didNotAllowPlugins() { } |
305 | 306 |
306 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0
; | 307 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0
; |
307 }; | 308 }; |
308 | 309 |
309 } // namespace WebCore | 310 } // namespace WebCore |
310 | 311 |
311 #endif // FrameLoaderClient_h | 312 #endif // FrameLoaderClient_h |
OLD | NEW |