⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 176520 in webkit


Ignore:
Timestamp:
Nov 24, 2014, 9:02:25 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Curl] Compile error in ResourceHandleManager.cpp.
https://bugs.webkit.org/show_bug.cgi?id=139026

Patch by peavo@outlook.com <peavo@outlook.com> on 2014-11-24
Reviewed by Brent Fulgham.

The parameter types of the constructor of the Timer class has changed.

  • platform/network/curl/ResourceHandleManager.cpp:

(WebCore::ResourceHandleManager::ResourceHandleManager):
(WebCore::ResourceHandleManager::downloadTimerCallback):

  • platform/network/curl/ResourceHandleManager.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r176515 r176520  
     12014-11-24  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [Curl] Compile error in ResourceHandleManager.cpp.
     4        https://bugs.webkit.org/show_bug.cgi?id=139026
     5
     6        Reviewed by Brent Fulgham.
     7
     8        The parameter types of the constructor of the Timer class has changed.
     9
     10        * platform/network/curl/ResourceHandleManager.cpp:
     11        (WebCore::ResourceHandleManager::ResourceHandleManager):
     12        (WebCore::ResourceHandleManager::downloadTimerCallback):
     13        * platform/network/curl/ResourceHandleManager.h:
     14
    1152014-11-24  Joanmarie Diggs  <jdiggs@igalia.com>
    216
  • trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp

    r175719 r176520  
    230230
    231231ResourceHandleManager::ResourceHandleManager()
    232     : m_downloadTimer(this, &ResourceHandleManager::downloadTimerCallback)
     232    : m_downloadTimer(*this, &ResourceHandleManager::downloadTimerCallback)
    233233    , m_cookieJarFileName(cookieJarPath())
    234234    , m_certificatePath (certificatePath())
     
    621621}
    622622
    623 void ResourceHandleManager::downloadTimerCallback(Timer* /* timer */)
     623void ResourceHandleManager::downloadTimerCallback()
    624624{
    625625    startScheduledJobs();
  • trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.h

    r175719 r176520  
    7777    ResourceHandleManager();
    7878    ~ResourceHandleManager();
    79     void downloadTimerCallback(Timer*);
     79    void downloadTimerCallback();
    8080    void removeFromCurl(ResourceHandle*);
    8181    bool removeScheduledJob(ResourceHandle*);
Note: See TracChangeset for help on using the changeset viewer.