| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, PassRefPtr
<WebCore::FormState>); | 124 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, PassRefPtr
<WebCore::FormState>); |
| 125 virtual void dispatchDidLoadMainResource(WebCore::DocumentLoader*); | 125 virtual void dispatchDidLoadMainResource(WebCore::DocumentLoader*); |
| 126 virtual void revertToProvisionalState(WebCore::DocumentLoader*); | 126 virtual void revertToProvisionalState(WebCore::DocumentLoader*); |
| 127 virtual void setMainDocumentError(WebCore::DocumentLoader*, const WebCore::R
esourceError&); | 127 virtual void setMainDocumentError(WebCore::DocumentLoader*, const WebCore::R
esourceError&); |
| 128 virtual void willChangeEstimatedProgress() { } | 128 virtual void willChangeEstimatedProgress() { } |
| 129 virtual void didChangeEstimatedProgress() { } | 129 virtual void didChangeEstimatedProgress() { } |
| 130 virtual void postProgressStartedNotification(); | 130 virtual void postProgressStartedNotification(); |
| 131 virtual void postProgressEstimateChangedNotification(); | 131 virtual void postProgressEstimateChangedNotification(); |
| 132 virtual void postProgressFinishedNotification(); | 132 virtual void postProgressFinishedNotification(); |
| 133 virtual void setMainFrameDocumentReady(bool); | 133 virtual void setMainFrameDocumentReady(bool); |
| 134 virtual void startDownload(const WebCore::ResourceRequest&); | 134 virtual void startDownload(const WebCore::ResourceRequest&, const String& su
ggestedName = String()); |
| 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 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); | 137 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); |
| 138 virtual void finishedLoading(WebCore::DocumentLoader*); | 138 virtual void finishedLoading(WebCore::DocumentLoader*); |
| 139 virtual void updateGlobalHistory(); | 139 virtual void updateGlobalHistory(); |
| 140 virtual void updateGlobalHistoryRedirectLinks(); | 140 virtual void updateGlobalHistoryRedirectLinks(); |
| 141 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; | 141 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; |
| 142 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; | 142 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; |
| 143 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const; | 143 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const; |
| 144 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const; | 144 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 // which specifies that the plugin should be ready to accept data. | 248 // which specifies that the plugin should be ready to accept data. |
| 249 bool m_sentInitialResponseToPlugin; | 249 bool m_sentInitialResponseToPlugin; |
| 250 | 250 |
| 251 // The navigation policy to use for the next call to dispatchCreatePage. | 251 // The navigation policy to use for the next call to dispatchCreatePage. |
| 252 WebNavigationPolicy m_nextNavigationPolicy; | 252 WebNavigationPolicy m_nextNavigationPolicy; |
| 253 }; | 253 }; |
| 254 | 254 |
| 255 } // namespace WebKit | 255 } // namespace WebKit |
| 256 | 256 |
| 257 #endif | 257 #endif |
| OLD | NEW |