HomeSort by relevance Sort by last modified time
    Searched refs:WebThread (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/public/platform/
WebThreadedDataReceiver.h 10 class WebThread;
15 virtual WebThread* backgroundThread() = 0;
WebSchedulerProxy.h 8 #include "WebThread.h"
24 BLINK_PLATFORM_EXPORT void postInputTask(const WebTraceLocation&, WebThread::Task*);
28 BLINK_PLATFORM_EXPORT void postCompositorTask(const WebTraceLocation&, WebThread::Task*);
32 BLINK_PLATFORM_EXPORT void postIpcTask(const WebTraceLocation&, WebThread::Task*);
WebThread.h 40 class BLINK_PLATFORM_EXPORT WebThread {
67 // enterRunLoop() processes tasks posted to this WebThread. This call does not return until some task calls exitRunLoop().
68 // WebThread does not support nesting, meaning that once the run loop is entered for a given WebThread it is not valid to
73 // Must be called when the WebThread is running.
76 virtual ~WebThread() { }
  /external/chromium_org/third_party/WebKit/Source/platform/heap/glue/
MessageLoopInterruptor.h 35 #include "public/platform/WebThread.h"
41 explicit MessageLoopInterruptor(blink::WebThread* thread) : m_thread(thread) { }
54 class GCTask : public blink::WebThread::Task {
68 blink::WebThread* m_thread;
PendingGCRunner.h 35 #include "public/platform/WebThread.h"
39 class PendingGCRunner : public blink::WebThread::TaskObserver {
  /external/chromium_org/third_party/WebKit/Source/platform/
WebThreadSupportingGC.h 11 #include "public/platform/WebThread.h"
18 // WebThreadSupportingGC wraps a WebThread and adds support for attaching
20 // must be called during initialization on the WebThread and before the
22 // method must be called on the WebThread during shutdown when the thread
30 void postTask(WebThread::Task* task)
35 void postDelayedTask(WebThread::Task* task, long long delayMs)
45 void addTaskObserver(WebThread::TaskObserver* observer)
50 void removeTaskObserver(WebThread::TaskObserver* observer)
68 WebThread& platformThread() const
82 // shut down. By deleting the WebThread first, we can guarantee tha
    [all...]
Task.h 34 #include "public/platform/WebThread.h"
39 class Task : public WebThread::Task {
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamerThread.h 9 #include "public/platform/WebThread.h"
26 void postTask(WebThread::Task*);
50 blink::WebThread& platformThread();
54 WTF::OwnPtr<blink::WebThread> m_thread;
59 class ScriptStreamingTask : public WebThread::Task {
ScriptStreamerThread.cpp 38 void ScriptStreamerThread::postTask(WebThread::Task* task)
54 blink::WebThread& ScriptStreamerThread::platformThread()
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Microtask.h 34 #include "public/platform/WebThread.h"
45 static void enqueueMicrotask(PassOwnPtr<WebThread::Task>);
Microtask.cpp 37 #include "public/platform/WebThread.h"
65 OwnPtr<WebThread::Task> task = adoptPtr(static_cast<WebThread::Task*>(data));
69 void Microtask::enqueueMicrotask(PassOwnPtr<WebThread::Task> callback)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThread.h 49 blink::WebThread& platformThread();
HTMLParserThread.cpp 83 blink::WebThread& HTMLParserThread::platformThread()
  /external/chromium_org/third_party/WebKit/Source/core/testing/
UnitTestHelpers.cpp 30 #include "public/platform/WebThread.h"
36 class QuitTask : public blink::WebThread::Task {
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSchedulerProxy.cpp 18 void runTask(PassOwnPtr<WebThread::Task> task)
40 void WebSchedulerProxy::postInputTask(const WebTraceLocation& webLocation, WebThread::Task* task)
46 void WebSchedulerProxy::postCompositorTask(const WebTraceLocation& webLocation, WebThread::Task* task)
52 void WebSchedulerProxy::postIpcTask(const WebTraceLocation& webLocation, WebThread::Task* task)
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
ReverbConvolver.h 45 class WebThread;
83 OwnPtr<WebThread> m_backgroundThread;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AsyncAudioDecoder.h 29 #include "public/platform/WebThread.h"
56 OwnPtr<WebThread> m_thread;
OfflineAudioDestinationNode.h 30 #include "public/platform/WebThread.h"
69 OwnPtr<WebThread> m_renderThread;
  /external/chromium_org/content/child/
webthread_impl.cc 5 // An implementation of WebThread in terms of base::MessageLoop and
24 TaskObserverAdapter(WebThread::TaskObserver* observer)
36 WebThread::TaskObserver* observer_;
65 FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
71 base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
106 FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
113 base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
  /external/chromium_org/mojo/services/html_viewer/
webthread_impl.cc 5 // An implementation of WebThread in terms of base::MessageLoop and
24 TaskObserverAdapter(WebThread::TaskObserver* observer)
36 WebThread::TaskObserver* observer_;
65 FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
71 base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
105 FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
112 base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerManager.h 29 #include "public/platform/WebThread.h"
35 class PLATFORM_EXPORT Canvas2DLayerManager : public WebThread::TaskObserver {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
ParallelJobs.h 33 #include "public/platform/WebThread.h"
71 OwnPtr<WebThread> thread = adoptPtr(Platform::current()->createThread("Unfortunate parallel worker"));
96 Vector<OwnPtr<WebThread> > m_threads;
  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
Scheduler.h 16 class WebThread;
116 WebThread* m_mainThread;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
SpinLockTest.cpp 36 #include "public/platform/WebThread.h"
82 OwnPtr<WebThread> thread1 = adoptPtr(Platform::current()->createThread("thread1"));
83 OwnPtr<WebThread> thread2 = adoptPtr(Platform::current()->createThread("thread2"));
  /external/chromium_org/third_party/WebKit/Source/web/
WebKit.cpp 56 #include "public/platform/WebThread.h"
71 class EndOfTaskRunner : public WebThread::TaskObserver {
86 static WebThread::TaskObserver* s_endOfTaskRunner = 0;
87 static WebThread::TaskObserver* s_pendingGCRunner = 0;
105 if (WebThread* currentThread = platform->currentThread()) {
153 if (WebThread* currentThread = platform->currentThread()) {

Completed in 694 milliseconds

1 2 3