| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 2 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
| 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 virtual void dispatchDidClearWindowObjectInWorld(WebCore::DOMWrapperWorld*); | 118 virtual void dispatchDidClearWindowObjectInWorld(WebCore::DOMWrapperWorld*); |
| 119 virtual void documentElementAvailable(); | 119 virtual void documentElementAvailable(); |
| 120 virtual void didPerformFirstNavigation() const; | 120 virtual void didPerformFirstNavigation() const; |
| 121 | 121 |
| 122 virtual void registerForIconNotification(bool); | 122 virtual void registerForIconNotification(bool); |
| 123 | 123 |
| 124 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL&, c
onst WTF::String& mimeType, bool shouldPreferPlugInsForImages); | 124 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL&, c
onst WTF::String& mimeType, bool shouldPreferPlugInsForImages); |
| 125 | 125 |
| 126 virtual void setMainFrameDocumentReady(bool); | 126 virtual void setMainFrameDocumentReady(bool); |
| 127 | 127 |
| 128 virtual void startDownload(const WebCore::ResourceRequest&); | 128 virtual void startDownload(const WebCore::ResourceRequest&, const String& su
ggestedName = String()); |
| 129 | 129 |
| 130 virtual void willChangeTitle(WebCore::DocumentLoader*); | 130 virtual void willChangeTitle(WebCore::DocumentLoader*); |
| 131 virtual void didChangeTitle(WebCore::DocumentLoader*); | 131 virtual void didChangeTitle(WebCore::DocumentLoader*); |
| 132 | 132 |
| 133 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); | 133 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); |
| 134 virtual void finishedLoading(WebCore::DocumentLoader*); | 134 virtual void finishedLoading(WebCore::DocumentLoader*); |
| 135 | 135 |
| 136 virtual void updateGlobalHistory(); | 136 virtual void updateGlobalHistory(); |
| 137 virtual void updateGlobalHistoryRedirectLinks(); | 137 virtual void updateGlobalHistoryRedirectLinks(); |
| 138 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; | 138 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 WebCore::ResourceResponse m_response; | 196 WebCore::ResourceResponse m_response; |
| 197 | 197 |
| 198 // Plugin view to redirect data to | 198 // Plugin view to redirect data to |
| 199 WebCore::PluginView* m_pluginView; | 199 WebCore::PluginView* m_pluginView; |
| 200 bool m_hasSentResponseToPlugin; | 200 bool m_hasSentResponseToPlugin; |
| 201 }; | 201 }; |
| 202 | 202 |
| 203 } // namespace WebKit | 203 } // namespace WebKit |
| 204 | 204 |
| 205 #endif // FrameLoaderClientWinCE_h | 205 #endif // FrameLoaderClientWinCE_h |
| OLD | NEW |