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

Side by Side Diff: Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.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
« no previous file with comments | « Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h ('k') | Source/WebKit/wx/ChangeLog » ('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) 2010 Patrick Gansterer <paroga@paroga.com> 2 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com>
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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 void FrameLoaderClientWinCE::setMainDocumentError(DocumentLoader*, const Resourc eError& error) 590 void FrameLoaderClientWinCE::setMainDocumentError(DocumentLoader*, const Resourc eError& error)
591 { 591 {
592 if (!m_pluginView) 592 if (!m_pluginView)
593 return; 593 return;
594 594
595 m_pluginView->didFail(error); 595 m_pluginView->didFail(error);
596 m_pluginView = 0; 596 m_pluginView = 0;
597 m_hasSentResponseToPlugin = false; 597 m_hasSentResponseToPlugin = false;
598 } 598 }
599 599
600 void FrameLoaderClientWinCE::startDownload(const WebCore::ResourceRequest&) 600 void FrameLoaderClientWinCE::startDownload(const WebCore::ResourceRequest&, cons t String& /* suggestedName */)
601 { 601 {
602 notImplemented(); 602 notImplemented();
603 } 603 }
604 604
605 void FrameLoaderClientWinCE::updateGlobalHistory() 605 void FrameLoaderClientWinCE::updateGlobalHistory()
606 { 606 {
607 notImplemented(); 607 notImplemented();
608 } 608 }
609 609
610 void FrameLoaderClientWinCE::updateGlobalHistoryRedirectLinks() 610 void FrameLoaderClientWinCE::updateGlobalHistoryRedirectLinks()
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 void FrameLoaderClientWinCE::dispatchDidBecomeFrameset(bool) 656 void FrameLoaderClientWinCE::dispatchDidBecomeFrameset(bool)
657 { 657 {
658 } 658 }
659 659
660 PassRefPtr<WebCore::FrameNetworkingContext> FrameLoaderClientWinCE::createNetwor kingContext() 660 PassRefPtr<WebCore::FrameNetworkingContext> FrameLoaderClientWinCE::createNetwor kingContext()
661 { 661 {
662 return FrameNetworkingContextWinCE::create(m_frame, userAgent(KURL())); 662 return FrameNetworkingContextWinCE::create(m_frame, userAgent(KURL()));
663 } 663 }
664 664
665 } // namespace WebKit 665 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h ('k') | Source/WebKit/wx/ChangeLog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698