Changeset 104122 in webkit


Ignore:
Timestamp:
Jan 5, 2012 12:51:02 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[WK2][EFL] creating dummy functions for Download class on Efl port.
https://bugs.webkit.org/show_bug.cgi?id=75246

dummy functions for Download class on Efl port

Patch by Keunsoon Lee <keunsoon.lee@samsung.com> on 2012-01-05
Reviewed by Hajime Morita.

  • PlatformEfl.cmake: add new file to compile
  • WebProcess/Downloads/efl: Added.
  • WebProcess/Downloads/efl/DownloadEfl.cpp: Added.

(WebKit::Download::start):
(WebKit::Download::startWithHandle):
(WebKit::Download::cancel):
(WebKit::Download::platformInvalidate):
(WebKit::Download::didDecideDestination):
(WebKit::Download::platformDidFinish):
(WebKit::Download::receivedCredential):
(WebKit::Download::receivedRequestToContinueWithoutCredential):
(WebKit::Download::receivedCancellation):
(WebKit::Download::useCredential):
(WebKit::Download::continueWithoutCredential):
(WebKit::Download::cancelAuthenticationChallenge):

Location:
trunk/Source/WebKit2
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r104115 r104122  
     12012-01-05  Keunsoon Lee  <keunsoon.lee@samsung.com>
     2
     3        [WK2][EFL] creating dummy functions for Download class on Efl port.
     4        https://bugs.webkit.org/show_bug.cgi?id=75246
     5
     6        dummy functions for Download class on Efl port
     7
     8        Reviewed by Hajime Morita.
     9
     10        * PlatformEfl.cmake: add new file to compile
     11        * WebProcess/Downloads/efl: Added.
     12        * WebProcess/Downloads/efl/DownloadEfl.cpp: Added.
     13        (WebKit::Download::start):
     14        (WebKit::Download::startWithHandle):
     15        (WebKit::Download::cancel):
     16        (WebKit::Download::platformInvalidate):
     17        (WebKit::Download::didDecideDestination):
     18        (WebKit::Download::platformDidFinish):
     19        (WebKit::Download::receivedCredential):
     20        (WebKit::Download::receivedRequestToContinueWithoutCredential):
     21        (WebKit::Download::receivedCancellation):
     22        (WebKit::Download::useCredential):
     23        (WebKit::Download::continueWithoutCredential):
     24        (WebKit::Download::cancelAuthenticationChallenge):
     25
    1262012-01-04  Dan Bernstein  <mitz@apple.com>
    227
  • trunk/Source/WebKit2/PlatformEfl.cmake

    r103512 r104122  
    4444    UIProcess/Plugins/efl/PluginInfoStoreEfl.cpp
    4545    UIProcess/Plugins/efl/PluginProcessProxyEfl.cpp
     46
     47    WebProcess/Downloads/efl/DownloadEfl.cpp
    4648
    4749    WebProcess/efl/WebProcessEfl.cpp
     
    117119    LIST(APPEND WebKit2_SOURCES
    118120        WebProcess/Cookies/soup/WebCookieManagerSoup.cpp
    119         WebProcess/Downloads/soup/DownloadSoup.cpp
    120121    )
    121122
     
    134135    LIST(APPEND WebKit2_SOURCES
    135136        WebProcess/Cookies/curl/WebCookieManagerCurl.cpp
    136         WebProcess/Downloads/curl/DownloadCurl.cpp
    137137    )
    138138ENDIF ()
Note: See TracChangeset for help on using the changeset viewer.