HomeSort by relevance Sort by last modified time
    Searched defs:CCThread (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCThread.cpp 27 #include "CCThread.h"
38 CCThread::CCThread()
41 m_threadID = createThread(CCThread::compositorThreadStart, this, "Chromium Compositor");
44 CCThread::~CCThread()
54 void CCThread::postTask(PassOwnPtr<Task> task)
59 void* CCThread::compositorThreadStart(void* userdata)
61 CCThread* ccThread = static_cast<CCThread*>(userdata)
    [all...]
CCThread.h 35 // The CCThread singleton owns the compositor thread and provides
37 class CCThread {
39 static PassOwnPtr<CCThread> create()
41 return adoptPtr(new CCThread());
44 virtual ~CCThread();
62 explicit CCThread();

Completed in 431 milliseconds