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

Side by Side Diff: Source/WebKit/chromium/src/FrameLoaderClientImpl.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, PassRefPtr <WebCore::FormState>); 124 virtual void dispatchWillSubmitForm(WebCore::FramePolicyFunction, PassRefPtr <WebCore::FormState>);
125 virtual void dispatchDidLoadMainResource(WebCore::DocumentLoader*); 125 virtual void dispatchDidLoadMainResource(WebCore::DocumentLoader*);
126 virtual void revertToProvisionalState(WebCore::DocumentLoader*); 126 virtual void revertToProvisionalState(WebCore::DocumentLoader*);
127 virtual void setMainDocumentError(WebCore::DocumentLoader*, const WebCore::R esourceError&); 127 virtual void setMainDocumentError(WebCore::DocumentLoader*, const WebCore::R esourceError&);
128 virtual void willChangeEstimatedProgress() { } 128 virtual void willChangeEstimatedProgress() { }
129 virtual void didChangeEstimatedProgress() { } 129 virtual void didChangeEstimatedProgress() { }
130 virtual void postProgressStartedNotification(); 130 virtual void postProgressStartedNotification();
131 virtual void postProgressEstimateChangedNotification(); 131 virtual void postProgressEstimateChangedNotification();
132 virtual void postProgressFinishedNotification(); 132 virtual void postProgressFinishedNotification();
133 virtual void setMainFrameDocumentReady(bool); 133 virtual void setMainFrameDocumentReady(bool);
134 virtual void startDownload(const WebCore::ResourceRequest&); 134 virtual void startDownload(const WebCore::ResourceRequest&, const String& su ggestedName = String());
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 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); 137 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int);
138 virtual void finishedLoading(WebCore::DocumentLoader*); 138 virtual void finishedLoading(WebCore::DocumentLoader*);
139 virtual void updateGlobalHistory(); 139 virtual void updateGlobalHistory();
140 virtual void updateGlobalHistoryRedirectLinks(); 140 virtual void updateGlobalHistoryRedirectLinks();
141 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; 141 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const;
142 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const; 142 virtual bool shouldStopLoadingForHistoryItem(WebCore::HistoryItem*) const;
143 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const; 143 virtual void dispatchDidAddBackForwardItem(WebCore::HistoryItem*) const;
144 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const; 144 virtual void dispatchDidRemoveBackForwardItem(WebCore::HistoryItem*) const;
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 // which specifies that the plugin should be ready to accept data. 248 // which specifies that the plugin should be ready to accept data.
249 bool m_sentInitialResponseToPlugin; 249 bool m_sentInitialResponseToPlugin;
250 250
251 // The navigation policy to use for the next call to dispatchCreatePage. 251 // The navigation policy to use for the next call to dispatchCreatePage.
252 WebNavigationPolicy m_nextNavigationPolicy; 252 WebNavigationPolicy m_nextNavigationPolicy;
253 }; 253 };
254 254
255 } // namespace WebKit 255 } // namespace WebKit
256 256
257 #endif 257 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/public/WebFrameClient.h ('k') | Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698