Ignore:
Timestamp:
Aug 21, 2015, 3:01:02 PM (10 years ago)
Author:
[email protected]
Message:

Stop using the old callOnMainThread variant on Windows
https://bugs.webkit.org/show_bug.cgi?id=148332

Reviewed by Tim Horton.

Source/WebCore:

  • platform/network/cf/CookieStorageCFNet.cpp:

(WebCore::notifyCookiesChanged):
(WebCore::notifyCookiesChangedOnMainThread): Deleted.

  • platform/network/win/NetworkStateNotifierWin.cpp:

(WebCore::NetworkStateNotifier::addrChangeCallback):

Source/WebKit/win:

  • Plugins/PluginMainThreadScheduler.cpp:

(WebCore::PluginMainThreadScheduler::scheduleCall):
(WebCore::PluginMainThreadScheduler::mainThreadCallback): Deleted.

  • Plugins/PluginMainThreadScheduler.h:
  • WebDatabaseManager.cpp:

(DidModifyOriginData::dispatchToMainThread):

  • WebIconDatabase.cpp:

(WebIconDatabase::scheduleNotificationDelivery):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/WebIconDatabase.cpp

    r188662 r188787  
    351351    if (!m_deliveryRequested) {
    352352        m_deliveryRequested = true;
    353         callOnMainThread(deliverNotifications, 0);
     353        callOnMainThread([] {
     354            deliverNotifications(0);
     355        });
    354356    }
    355357}
Note: See TracChangeset for help on using the changeset viewer.