| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_CHILD_WEBTHREAD_IMPL_H_ | 5 #ifndef CONTENT_CHILD_WEBTHREAD_IMPL_H_ |
| 6 #define CONTENT_CHILD_WEBTHREAD_IMPL_H_ | 6 #define CONTENT_CHILD_WEBTHREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/threading/thread.h" | 11 #include "base/threading/thread.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "third_party/WebKit/public/platform/WebThread.h" | 13 #include "third_party/WebKit/public/platform/WebThread.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 class CONTENT_EXPORT WebThreadBase : public blink::WebThread { | 17 class CONTENT_EXPORT WebThreadBase : public blink::WebThread { |
| 18 public: | 18 public: |
| 19 virtual ~WebThreadBase(); | 19 virtual ~WebThreadBase(); |
| 20 | 20 |
| 21 virtual void addTaskObserver(TaskObserver* observer); | 21 virtual void addTaskObserver(TaskObserver* observer); |
| 22 virtual void removeTaskObserver(TaskObserver* observer); | 22 virtual void removeTaskObserver(TaskObserver* observer); |
| 23 | 23 |
| 24 virtual bool isCurrentThread() const = 0; | 24 virtual bool isCurrentThread() const = 0; |
| 25 virtual blink::PlatformThreadId threadId() const = 0; |
| 25 | 26 |
| 26 protected: | 27 protected: |
| 27 WebThreadBase(); | 28 WebThreadBase(); |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 class TaskObserverAdapter; | 31 class TaskObserverAdapter; |
| 31 | 32 |
| 32 typedef std::map<TaskObserver*, TaskObserverAdapter*> TaskObserverMap; | 33 typedef std::map<TaskObserver*, TaskObserverAdapter*> TaskObserverMap; |
| 33 TaskObserverMap task_observer_map_; | 34 TaskObserverMap task_observer_map_; |
| 34 }; | 35 }; |
| 35 | 36 |
| 36 class CONTENT_EXPORT WebThreadImpl : public WebThreadBase { | 37 class CONTENT_EXPORT WebThreadImpl : public WebThreadBase { |
| 37 public: | 38 public: |
| 38 explicit WebThreadImpl(const char* name); | 39 explicit WebThreadImpl(const char* name); |
| 39 virtual ~WebThreadImpl(); | 40 virtual ~WebThreadImpl(); |
| 40 | 41 |
| 41 virtual void postTask(Task* task); | 42 virtual void postTask(Task* task); |
| 42 virtual void postDelayedTask(Task* task, long long delay_ms); | 43 virtual void postDelayedTask(Task* task, long long delay_ms); |
| 43 | 44 |
| 44 virtual void enterRunLoop(); | 45 virtual void enterRunLoop(); |
| 45 virtual void exitRunLoop(); | 46 virtual void exitRunLoop(); |
| 46 | 47 |
| 47 base::MessageLoop* message_loop() const { return thread_->message_loop(); } | 48 base::MessageLoop* message_loop() const { return thread_->message_loop(); } |
| 48 | 49 |
| 49 virtual bool isCurrentThread() const OVERRIDE; | 50 virtual bool isCurrentThread() const OVERRIDE; |
| 51 virtual blink::PlatformThreadId threadId() const OVERRIDE; |
| 50 | 52 |
| 51 private: | 53 private: |
| 52 scoped_ptr<base::Thread> thread_; | 54 scoped_ptr<base::Thread> thread_; |
| 53 }; | 55 }; |
| 54 | 56 |
| 55 class WebThreadImplForMessageLoop : public WebThreadBase { | 57 class WebThreadImplForMessageLoop : public WebThreadBase { |
| 56 public: | 58 public: |
| 57 CONTENT_EXPORT explicit WebThreadImplForMessageLoop( | 59 CONTENT_EXPORT explicit WebThreadImplForMessageLoop( |
| 58 base::MessageLoopProxy* message_loop); | 60 base::MessageLoopProxy* message_loop); |
| 59 CONTENT_EXPORT virtual ~WebThreadImplForMessageLoop(); | 61 CONTENT_EXPORT virtual ~WebThreadImplForMessageLoop(); |
| 60 | 62 |
| 61 virtual void postTask(Task* task) OVERRIDE; | 63 virtual void postTask(Task* task) OVERRIDE; |
| 62 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; | 64 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; |
| 63 | 65 |
| 64 virtual void enterRunLoop() OVERRIDE; | 66 virtual void enterRunLoop() OVERRIDE; |
| 65 virtual void exitRunLoop() OVERRIDE; | 67 virtual void exitRunLoop() OVERRIDE; |
| 66 | 68 |
| 67 private: | 69 private: |
| 68 virtual bool isCurrentThread() const OVERRIDE; | 70 virtual bool isCurrentThread() const OVERRIDE; |
| 71 virtual blink::PlatformThreadId threadId() const OVERRIDE; |
| 72 |
| 69 scoped_refptr<base::MessageLoopProxy> message_loop_; | 73 scoped_refptr<base::MessageLoopProxy> message_loop_; |
| 74 blink::PlatformThreadId thread_id_; |
| 70 }; | 75 }; |
| 71 | 76 |
| 72 } // namespace content | 77 } // namespace content |
| 73 | 78 |
| 74 #endif // CONTENT_CHILD_WEBTHREAD_IMPL_H_ | 79 #endif // CONTENT_CHILD_WEBTHREAD_IMPL_H_ |
| OLD | NEW |