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

Side by Side Diff: Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.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) 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 Nokia Corporation and/or its subsidiary(-ies) 4 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
5 * Copyright (C) 2008 Collabora Ltd. All rights reserved. 5 * Copyright (C) 2008 Collabora Ltd. All rights reserved.
6 * 6 *
7 * All rights reserved. 7 * All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 virtual void dispatchDidLoadMainResource(DocumentLoader*); 142 virtual void dispatchDidLoadMainResource(DocumentLoader*);
143 virtual void revertToProvisionalState(DocumentLoader*); 143 virtual void revertToProvisionalState(DocumentLoader*);
144 virtual void setMainDocumentError(DocumentLoader*, const ResourceError&); 144 virtual void setMainDocumentError(DocumentLoader*, const ResourceError&);
145 145
146 virtual void postProgressStartedNotification(); 146 virtual void postProgressStartedNotification();
147 virtual void postProgressEstimateChangedNotification(); 147 virtual void postProgressEstimateChangedNotification();
148 virtual void postProgressFinishedNotification(); 148 virtual void postProgressFinishedNotification();
149 149
150 virtual void setMainFrameDocumentReady(bool); 150 virtual void setMainFrameDocumentReady(bool);
151 151
152 virtual void startDownload(const WebCore::ResourceRequest&); 152 virtual void startDownload(const WebCore::ResourceRequest&, const String& su ggestedName = String());
153 153
154 virtual void willChangeTitle(DocumentLoader*); 154 virtual void willChangeTitle(DocumentLoader*);
155 virtual void didChangeTitle(DocumentLoader*); 155 virtual void didChangeTitle(DocumentLoader*);
156 156
157 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); 157 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int);
158 virtual void finishedLoading(DocumentLoader*); 158 virtual void finishedLoading(DocumentLoader*);
159 159
160 virtual void updateGlobalHistory(); 160 virtual void updateGlobalHistory();
161 virtual void updateGlobalHistoryRedirectLinks(); 161 virtual void updateGlobalHistoryRedirectLinks();
162 virtual bool shouldGoToHistoryItem(HistoryItem*) const; 162 virtual bool shouldGoToHistoryItem(HistoryItem*) const;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 // See finishedLoading(). 278 // See finishedLoading().
279 bool m_hasRepresentation; 279 bool m_hasRepresentation;
280 280
281 KURL m_lastRequestedUrl; 281 KURL m_lastRequestedUrl;
282 ResourceError m_loadError; 282 ResourceError m_loadError;
283 }; 283 };
284 284
285 } 285 }
286 286
287 #endif 287 #endif
OLDNEW
« no previous file with comments | « Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm ('k') | Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698