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

Side by Side Diff: Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp

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, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2010, 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 { 782 {
783 if (WebPage* webPage = m_frame->page()) 783 if (WebPage* webPage = m_frame->page())
784 webPage->send(Messages::WebPageProxy::DidFinishProgress()); 784 webPage->send(Messages::WebPageProxy::DidFinishProgress());
785 } 785 }
786 786
787 void WebFrameLoaderClient::setMainFrameDocumentReady(bool) 787 void WebFrameLoaderClient::setMainFrameDocumentReady(bool)
788 { 788 {
789 notImplemented(); 789 notImplemented();
790 } 790 }
791 791
792 void WebFrameLoaderClient::startDownload(const ResourceRequest& request) 792 void WebFrameLoaderClient::startDownload(const ResourceRequest& request, const S tring& /* suggestedName */)
793 { 793 {
794 m_frame->startDownload(request); 794 m_frame->startDownload(request);
795 } 795 }
796 796
797 void WebFrameLoaderClient::willChangeTitle(DocumentLoader*) 797 void WebFrameLoaderClient::willChangeTitle(DocumentLoader*)
798 { 798 {
799 notImplemented(); 799 notImplemented();
800 } 800 }
801 801
802 void WebFrameLoaderClient::didChangeTitle(DocumentLoader*) 802 void WebFrameLoaderClient::didChangeTitle(DocumentLoader*)
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after
1437 1437
1438 webPage->didChangeScrollOffsetForMainFrame(); 1438 webPage->didChangeScrollOffsetForMainFrame();
1439 } 1439 }
1440 1440
1441 PassRefPtr<FrameNetworkingContext> WebFrameLoaderClient::createNetworkingContext () 1441 PassRefPtr<FrameNetworkingContext> WebFrameLoaderClient::createNetworkingContext ()
1442 { 1442 {
1443 return WebFrameNetworkingContext::create(m_frame->coreFrame()); 1443 return WebFrameNetworkingContext::create(m_frame->coreFrame());
1444 } 1444 }
1445 1445
1446 } // namespace WebKit 1446 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.h ('k') | Tools/DumpRenderTree/chromium/WebViewHost.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698