Changeset 176520 in webkit
- Timestamp:
- Nov 24, 2014, 9:02:25 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/network/curl/ResourceHandleManager.cpp (modified) (2 diffs)
-
platform/network/curl/ResourceHandleManager.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r176515 r176520 1 2014-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 1 15 2014-11-24 Joanmarie Diggs <jdiggs@igalia.com> 2 16 -
trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.cpp
r175719 r176520 230 230 231 231 ResourceHandleManager::ResourceHandleManager() 232 : m_downloadTimer( this, &ResourceHandleManager::downloadTimerCallback)232 : m_downloadTimer(*this, &ResourceHandleManager::downloadTimerCallback) 233 233 , m_cookieJarFileName(cookieJarPath()) 234 234 , m_certificatePath (certificatePath()) … … 621 621 } 622 622 623 void ResourceHandleManager::downloadTimerCallback( Timer* /* timer */)623 void ResourceHandleManager::downloadTimerCallback() 624 624 { 625 625 startScheduledJobs(); -
trunk/Source/WebCore/platform/network/curl/ResourceHandleManager.h
r175719 r176520 77 77 ResourceHandleManager(); 78 78 ~ResourceHandleManager(); 79 void downloadTimerCallback( Timer*);79 void downloadTimerCallback(); 80 80 void removeFromCurl(ResourceHandle*); 81 81 bool removeScheduledJob(ResourceHandle*);
Note:
See TracChangeset
for help on using the changeset viewer.