Changeset 88207 in webkit


Ignore:
Timestamp:
Jun 6, 2011 6:03:28 PM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

2011-06-06 Gyuyoung Kim <gyuyoung.kim@samsung.com>

Reviewed by Antonio Gomes.

[EFL] Implement startDownload() in FrameLoaderClientEfl
https://bugs.webkit.org/show_bug.cgi?id=61998

Implement startDownload() with download().

  • WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::startDownload):
Location:
trunk/Source/WebKit/efl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/efl/ChangeLog

    r88017 r88207  
     12011-06-06  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [EFL] Implement startDownload() in FrameLoaderClientEfl
     6        https://bugs.webkit.org/show_bug.cgi?id=61998
     7
     8        Implement startDownload() with download().
     9
     10        * WebCoreSupport/FrameLoaderClientEfl.cpp:
     11        (WebCore::FrameLoaderClientEfl::startDownload):
     12
    1132011-06-03  Sheriff Bot  <webkit.review.bot@gmail.com>
    214
  • trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp

    r88017 r88207  
    868868}
    869869
    870 void FrameLoaderClientEfl::startDownload(const ResourceRequest&)
    871 {
    872     notImplemented();
     870void FrameLoaderClientEfl::startDownload(const ResourceRequest& request)
     871{
     872    if (!m_view)
     873        return;
     874
     875    CString url = request.url().prettyURL().utf8();
     876    Ewk_Download download;
     877
     878    download.url = url.data();
     879    ewk_view_download_request(m_view, &download);
    873880}
    874881
Note: See TracChangeset for help on using the changeset viewer.