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

Side by Side Diff: Source/WebCore/loader/FrameLoaderClient.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
« no previous file with comments | « Source/WebCore/loader/EmptyClients.h ('k') | Source/WebKit/chromium/features.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 172
173 // Maybe these should go into a ProgressTrackerClient some day 173 // Maybe these should go into a ProgressTrackerClient some day
174 virtual void willChangeEstimatedProgress() { } 174 virtual void willChangeEstimatedProgress() { }
175 virtual void didChangeEstimatedProgress() { } 175 virtual void didChangeEstimatedProgress() { }
176 virtual void postProgressStartedNotification() = 0; 176 virtual void postProgressStartedNotification() = 0;
177 virtual void postProgressEstimateChangedNotification() = 0; 177 virtual void postProgressEstimateChangedNotification() = 0;
178 virtual void postProgressFinishedNotification() = 0; 178 virtual void postProgressFinishedNotification() = 0;
179 179
180 virtual void setMainFrameDocumentReady(bool) = 0; 180 virtual void setMainFrameDocumentReady(bool) = 0;
181 181
182 virtual void startDownload(const ResourceRequest&) = 0; 182 virtual void startDownload(const ResourceRequest&, const String& suggest edName = String()) = 0;
183 183
184 virtual void willChangeTitle(DocumentLoader*) = 0; 184 virtual void willChangeTitle(DocumentLoader*) = 0;
185 virtual void didChangeTitle(DocumentLoader*) = 0; 185 virtual void didChangeTitle(DocumentLoader*) = 0;
186 186
187 virtual void committedLoad(DocumentLoader*, const char*, int) = 0; 187 virtual void committedLoad(DocumentLoader*, const char*, int) = 0;
188 virtual void finishedLoading(DocumentLoader*) = 0; 188 virtual void finishedLoading(DocumentLoader*) = 0;
189 189
190 virtual void updateGlobalHistory() = 0; 190 virtual void updateGlobalHistory() = 0;
191 virtual void updateGlobalHistoryRedirectLinks() = 0; 191 virtual void updateGlobalHistoryRedirectLinks() = 0;
192 192
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 virtual void didNotAllowPlugins() { } 313 virtual void didNotAllowPlugins() { }
314 314
315 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0 ; 315 virtual PassRefPtr<FrameNetworkingContext> createNetworkingContext() = 0 ;
316 316
317 virtual bool shouldPaintBrokenImage(const KURL&) const { return true; } 317 virtual bool shouldPaintBrokenImage(const KURL&) const { return true; }
318 }; 318 };
319 319
320 } // namespace WebCore 320 } // namespace WebCore
321 321
322 #endif // FrameLoaderClient_h 322 #endif // FrameLoaderClient_h
OLDNEW
« no previous file with comments | « Source/WebCore/loader/EmptyClients.h ('k') | Source/WebKit/chromium/features.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698