| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010, 2011 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 // Maybe these should go into a ProgressTrackerClient some day | 116 // Maybe these should go into a ProgressTrackerClient some day |
| 117 virtual void willChangeEstimatedProgress(); | 117 virtual void willChangeEstimatedProgress(); |
| 118 virtual void didChangeEstimatedProgress(); | 118 virtual void didChangeEstimatedProgress(); |
| 119 virtual void postProgressStartedNotification(); | 119 virtual void postProgressStartedNotification(); |
| 120 virtual void postProgressEstimateChangedNotification(); | 120 virtual void postProgressEstimateChangedNotification(); |
| 121 virtual void postProgressFinishedNotification(); | 121 virtual void postProgressFinishedNotification(); |
| 122 | 122 |
| 123 virtual void setMainFrameDocumentReady(bool); | 123 virtual void setMainFrameDocumentReady(bool); |
| 124 | 124 |
| 125 virtual void startDownload(const WebCore::ResourceRequest&); | 125 virtual void startDownload(const WebCore::ResourceRequest&, const String& su
ggestedName = String()); |
| 126 | 126 |
| 127 virtual void willChangeTitle(WebCore::DocumentLoader*); | 127 virtual void willChangeTitle(WebCore::DocumentLoader*); |
| 128 virtual void didChangeTitle(WebCore::DocumentLoader*); | 128 virtual void didChangeTitle(WebCore::DocumentLoader*); |
| 129 | 129 |
| 130 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); | 130 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); |
| 131 virtual void finishedLoading(WebCore::DocumentLoader*); | 131 virtual void finishedLoading(WebCore::DocumentLoader*); |
| 132 | 132 |
| 133 virtual void updateGlobalHistory(); | 133 virtual void updateGlobalHistory(); |
| 134 virtual void updateGlobalHistoryRedirectLinks(); | 134 virtual void updateGlobalHistoryRedirectLinks(); |
| 135 | 135 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 | 224 |
| 225 WebFrame* m_frame; | 225 WebFrame* m_frame; |
| 226 RefPtr<PluginView> m_pluginView; | 226 RefPtr<PluginView> m_pluginView; |
| 227 bool m_hasSentResponseToPluginView; | 227 bool m_hasSentResponseToPluginView; |
| 228 bool m_frameHasCustomRepresentation; | 228 bool m_frameHasCustomRepresentation; |
| 229 }; | 229 }; |
| 230 | 230 |
| 231 } // namespace WebKit | 231 } // namespace WebKit |
| 232 | 232 |
| 233 #endif // WebFrameLoaderClient_h | 233 #endif // WebFrameLoaderClient_h |
| OLD | NEW |