1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_CHILD_WEBTHREAD_IMPL_H_
6 #define CONTENT_CHILD_WEBTHREAD_IMPL_H_
10 #include "base/memory/scoped_ptr.h"
11 #include "base/threading/thread.h"
12 #include "content/common/content_export.h"
13 #include "third_party/WebKit/public/platform/WebThread.h"
17 class CONTENT_EXPORT WebThreadBase
: public blink::WebThread
{
19 virtual ~WebThreadBase();
21 virtual void addTaskObserver(TaskObserver
* observer
);
22 virtual void removeTaskObserver(TaskObserver
* observer
);
24 virtual bool isCurrentThread() const = 0;
25 virtual blink::PlatformThreadId
threadId() const = 0;
31 class TaskObserverAdapter
;
33 typedef std::map
<TaskObserver
*, TaskObserverAdapter
*> TaskObserverMap
;
34 TaskObserverMap task_observer_map_
;
37 class CONTENT_EXPORT WebThreadImpl
: public WebThreadBase
{
39 explicit WebThreadImpl(const char* name
);
40 virtual ~WebThreadImpl();
42 virtual void postTask(Task
* task
);
43 virtual void postDelayedTask(Task
* task
, long long delay_ms
);
45 virtual void enterRunLoop();
46 virtual void exitRunLoop();
48 base::MessageLoop
* message_loop() const { return thread_
->message_loop(); }
50 virtual bool isCurrentThread() const OVERRIDE
;
51 virtual blink::PlatformThreadId
threadId() const OVERRIDE
;
54 scoped_ptr
<base::Thread
> thread_
;
57 class WebThreadImplForMessageLoop
: public WebThreadBase
{
59 CONTENT_EXPORT
explicit WebThreadImplForMessageLoop(
60 base::MessageLoopProxy
* message_loop
);
61 CONTENT_EXPORT
virtual ~WebThreadImplForMessageLoop();
63 virtual void postTask(Task
* task
) OVERRIDE
;
64 virtual void postDelayedTask(Task
* task
, long long delay_ms
) OVERRIDE
;
66 virtual void enterRunLoop() OVERRIDE
;
67 virtual void exitRunLoop() OVERRIDE
;
70 virtual bool isCurrentThread() const OVERRIDE
;
71 virtual blink::PlatformThreadId
threadId() const OVERRIDE
;
73 scoped_refptr
<base::MessageLoopProxy
> message_loop_
;
74 blink::PlatformThreadId thread_id_
;
77 } // namespace content
79 #endif // CONTENT_CHILD_WEBTHREAD_IMPL_H_