Ignore:
Timestamp:
Aug 18, 2015, 2:28:31 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, fix GTK build.

  • TestWebKitAPI/Tests/WTF/glib/WorkQueueGLib.cpp:

(TestWebKitAPI::TEST):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/TestWebKitAPI/Tests/WTF/glib/WorkQueueGLib.cpp

    r188594 r188596  
    2929#include <gio/gio.h>
    3030#include <thread>
     31#include <wtf/Condition.h>
     32#include <wtf/Lock.h>
    3133#include <wtf/WorkQueue.h>
    3234#include <wtf/glib/GRefPtr.h>
     
    3941    struct TestingContext {
    4042        Lock m_lock;
    41         ThreadCondition m_testCompleted;
     43        Condition m_testCompleted;
    4244        GMainContext* m_mainContext;
    4345    } context;
     
    6062                LockHolder locker(context->m_lock);
    6163                EXPECT_EQ(g_main_context_get_thread_default(), context->m_mainContext);
    62                 context->m_testCompleted.signal();
     64                context->m_testCompleted.notifyOne();
    6365            }, &context);
    6466    });
Note: See TracChangeset for help on using the changeset viewer.