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

Side by Side Diff: Source/WebKit/mac/WebCoreSupport/WebFrameLoaderClient.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, 2007, 2008, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved.
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 virtual bool dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader* , const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length) ; 133 virtual bool dispatchDidLoadResourceFromMemoryCache(WebCore::DocumentLoader* , const WebCore::ResourceRequest&, const WebCore::ResourceResponse&, int length) ;
134 134
135 virtual void willChangeEstimatedProgress(); 135 virtual void willChangeEstimatedProgress();
136 virtual void didChangeEstimatedProgress(); 136 virtual void didChangeEstimatedProgress();
137 virtual void postProgressStartedNotification(); 137 virtual void postProgressStartedNotification();
138 virtual void postProgressEstimateChangedNotification(); 138 virtual void postProgressEstimateChangedNotification();
139 virtual void postProgressFinishedNotification(); 139 virtual void postProgressFinishedNotification();
140 140
141 virtual void setMainFrameDocumentReady(bool); 141 virtual void setMainFrameDocumentReady(bool);
142 142
143 virtual void startDownload(const WebCore::ResourceRequest&); 143 virtual void startDownload(const WebCore::ResourceRequest&, const String& su ggestedName = String());
144 144
145 virtual void willChangeTitle(WebCore::DocumentLoader*); 145 virtual void willChangeTitle(WebCore::DocumentLoader*);
146 virtual void didChangeTitle(WebCore::DocumentLoader*); 146 virtual void didChangeTitle(WebCore::DocumentLoader*);
147 147
148 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int); 148 virtual void committedLoad(WebCore::DocumentLoader*, const char*, int);
149 virtual void finishedLoading(WebCore::DocumentLoader*); 149 virtual void finishedLoading(WebCore::DocumentLoader*);
150 virtual void updateGlobalHistory(); 150 virtual void updateGlobalHistory();
151 virtual void updateGlobalHistoryRedirectLinks(); 151 virtual void updateGlobalHistoryRedirectLinks();
152 152
153 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const; 153 virtual bool shouldGoToHistoryItem(WebCore::HistoryItem*) const;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 243
244 virtual PassRefPtr<WebCore::FrameNetworkingContext> createNetworkingContext( ); 244 virtual PassRefPtr<WebCore::FrameNetworkingContext> createNetworkingContext( );
245 245
246 virtual bool shouldPaintBrokenImage(const WebCore::KURL&) const; 246 virtual bool shouldPaintBrokenImage(const WebCore::KURL&) const;
247 247
248 RetainPtr<WebFrame> m_webFrame; 248 RetainPtr<WebFrame> m_webFrame;
249 249
250 RetainPtr<WebFramePolicyListener> m_policyListener; 250 RetainPtr<WebFramePolicyListener> m_policyListener;
251 WebCore::FramePolicyFunction m_policyFunction; 251 WebCore::FramePolicyFunction m_policyFunction;
252 }; 252 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698