Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h

Issue 7521007: Merge 91797 - Add support for download='filename' attribute in anchors. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp ('k') | Source/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698