| 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, 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2011 Apple 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 virtual void dispatchDidClearWindowObjectInWorld(WebCore::DOMWrapperWorl
d*); | 123 virtual void dispatchDidClearWindowObjectInWorld(WebCore::DOMWrapperWorl
d*); |
| 124 virtual void documentElementAvailable(); | 124 virtual void documentElementAvailable(); |
| 125 virtual void didPerformFirstNavigation() const; | 125 virtual void didPerformFirstNavigation() const; |
| 126 | 126 |
| 127 virtual void registerForIconNotification(bool); | 127 virtual void registerForIconNotification(bool); |
| 128 | 128 |
| 129 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL
&, const WTF::String& mimeType, bool shouldPreferPlugInsForImages); | 129 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL
&, const WTF::String& mimeType, bool shouldPreferPlugInsForImages); |
| 130 | 130 |
| 131 virtual void setMainFrameDocumentReady(bool); | 131 virtual void setMainFrameDocumentReady(bool); |
| 132 | 132 |
| 133 virtual void startDownload(const WebCore::ResourceRequest&); | 133 virtual void startDownload(const WebCore::ResourceRequest&, const String
& suggestedName = String()); |
| 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; |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 // Plugin view to redirect data to | 202 // Plugin view to redirect data to |
| 203 WebCore::PluginView* m_pluginView; | 203 WebCore::PluginView* m_pluginView; |
| 204 bool m_hasSentResponseToPlugin; | 204 bool m_hasSentResponseToPlugin; |
| 205 | 205 |
| 206 bool m_hasRepresentation; | 206 bool m_hasRepresentation; |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } | 209 } |
| 210 | 210 |
| 211 #endif | 211 #endif |
| OLD | NEW |