| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |