| 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 * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia | 5 * Copyright (C) 2008 INdT - Instituto Nokia de Tecnologia |
| 6 * Copyright (C) 2009-2010 ProFUSION embedded systems | 6 * Copyright (C) 2009-2010 ProFUSION embedded systems |
| 7 * Copyright (C) 2009-2010 Samsung Electronics | 7 * Copyright (C) 2009-2010 Samsung Electronics |
| 8 * | 8 * |
| 9 * All rights reserved. | 9 * All rights reserved. |
| 10 * | 10 * |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 virtual void documentElementAvailable(); | 146 virtual void documentElementAvailable(); |
| 147 | 147 |
| 148 virtual void didPerformFirstNavigation() const; | 148 virtual void didPerformFirstNavigation() const; |
| 149 | 149 |
| 150 virtual void registerForIconNotification(bool); | 150 virtual void registerForIconNotification(bool); |
| 151 | 151 |
| 152 virtual ObjectContentType objectContentType(const KURL&, const String& mimeT
ype, bool shouldPreferPlugInsForImages); | 152 virtual ObjectContentType objectContentType(const KURL&, const String& mimeT
ype, bool shouldPreferPlugInsForImages); |
| 153 | 153 |
| 154 virtual void setMainFrameDocumentReady(bool); | 154 virtual void setMainFrameDocumentReady(bool); |
| 155 | 155 |
| 156 virtual void startDownload(const ResourceRequest&); | 156 virtual void startDownload(const ResourceRequest&, const String& suggestedNa
me = String()); |
| 157 | 157 |
| 158 virtual void willChangeTitle(DocumentLoader*); | 158 virtual void willChangeTitle(DocumentLoader*); |
| 159 virtual void didChangeTitle(DocumentLoader*); | 159 virtual void didChangeTitle(DocumentLoader*); |
| 160 | 160 |
| 161 virtual void committedLoad(DocumentLoader*, const char*, int); | 161 virtual void committedLoad(DocumentLoader*, const char*, int); |
| 162 virtual void finishedLoading(DocumentLoader*); | 162 virtual void finishedLoading(DocumentLoader*); |
| 163 | 163 |
| 164 virtual void updateGlobalHistory(); | 164 virtual void updateGlobalHistory(); |
| 165 virtual void updateGlobalHistoryRedirectLinks(); | 165 virtual void updateGlobalHistoryRedirectLinks(); |
| 166 virtual bool shouldGoToHistoryItem(HistoryItem*) const; | 166 virtual bool shouldGoToHistoryItem(HistoryItem*) const; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 222 |
| 223 // Plugin view to redirect data to | 223 // Plugin view to redirect data to |
| 224 PluginView* m_pluginView; | 224 PluginView* m_pluginView; |
| 225 bool m_hasSentResponseToPlugin; | 225 bool m_hasSentResponseToPlugin; |
| 226 bool m_hasRepresentation; | 226 bool m_hasRepresentation; |
| 227 }; | 227 }; |
| 228 | 228 |
| 229 } | 229 } |
| 230 | 230 |
| 231 #endif // FrameLoaderClientEfl_h | 231 #endif // FrameLoaderClientEfl_h |
| OLD | NEW |