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

Side by Side Diff: Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.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, 5 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) 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
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
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
OLDNEW
« no previous file with comments | « Source/WebKit/wince/ChangeLog ('k') | Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698