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