| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef WEBKIT_GLUE_WEBTHREAD_IMPL_H_ | 4 #ifndef WEBKIT_GLUE_WEBTHREAD_IMPL_H_ |
| 5 #define WEBKIT_GLUE_WEBTHREAD_IMPL_H_ | 5 #define WEBKIT_GLUE_WEBTHREAD_IMPL_H_ |
| 6 | 6 |
| 7 #include <map> | |
| 8 | |
| 9 #include "base/threading/thread.h" | 7 #include "base/threading/thread.h" |
| 10 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebThread.h" | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebThread.h" |
| 12 #include "webkit/glue/webkit_glue_export.h" | 10 #include "webkit/glue/webkit_glue_export.h" |
| 13 | 11 |
| 14 namespace webkit_glue { | 12 namespace webkit_glue { |
| 15 | 13 |
| 16 class WebThreadBase : public WebKit::WebThread { | 14 class WebThreadImpl : public WebKit::WebThread { |
| 17 public: | 15 public: |
| 18 virtual void addTaskObserver(TaskObserver* observer); | 16 WEBKIT_GLUE_EXPORT WebThreadImpl(const char* name); |
| 19 virtual void removeTaskObserver(TaskObserver* observer); | |
| 20 | |
| 21 protected: | |
| 22 virtual bool IsCurrentThread() const = 0; | |
| 23 | |
| 24 private: | |
| 25 class TaskObserverAdapter; | |
| 26 typedef std::map<TaskObserver*, TaskObserverAdapter*> TaskObserverMap; | |
| 27 TaskObserverMap task_observer_map_; | |
| 28 }; | |
| 29 | |
| 30 class WebThreadImpl : public WebThreadBase { | |
| 31 public: | |
| 32 WEBKIT_GLUE_EXPORT explicit WebThreadImpl(const char* name); | |
| 33 WEBKIT_GLUE_EXPORT virtual ~WebThreadImpl(); | 17 WEBKIT_GLUE_EXPORT virtual ~WebThreadImpl(); |
| 34 | 18 |
| 35 virtual void postTask(Task* task) OVERRIDE; | 19 virtual void postTask(Task* task) OVERRIDE; |
| 36 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; | 20 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; |
| 37 | 21 |
| 38 MessageLoop* message_loop() const { return thread_->message_loop(); } | 22 MessageLoop* message_loop() const { return thread_->message_loop(); } |
| 39 | 23 |
| 40 protected: | 24 protected: |
| 41 virtual bool IsCurrentThread() const; | |
| 42 | |
| 43 private: | |
| 44 scoped_ptr<base::Thread> thread_; | 25 scoped_ptr<base::Thread> thread_; |
| 45 }; | 26 }; |
| 46 | 27 |
| 47 class WebThreadImplForMessageLoop : public WebThreadBase { | 28 class WebThreadImplForMessageLoop : public WebKit::WebThread { |
| 48 public: | 29 public: |
| 49 explicit WebThreadImplForMessageLoop(base::MessageLoopProxy* message_loop); | 30 WebThreadImplForMessageLoop(base::MessageLoopProxy* message_loop); |
| 50 virtual ~WebThreadImplForMessageLoop(); | 31 virtual ~WebThreadImplForMessageLoop(); |
| 51 | 32 |
| 52 virtual void postTask(Task* task) OVERRIDE; | 33 virtual void postTask(Task* task) OVERRIDE; |
| 53 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; | 34 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE; |
| 54 | 35 |
| 55 protected: | 36 protected: |
| 56 virtual bool IsCurrentThread() const; | |
| 57 | |
| 58 private: | |
| 59 scoped_refptr<base::MessageLoopProxy> message_loop_; | 37 scoped_refptr<base::MessageLoopProxy> message_loop_; |
| 60 }; | 38 }; |
| 61 | 39 |
| 62 } // namespace webkit_glue | 40 } // namespace webkit_glue |
| 63 | 41 |
| 64 #endif | 42 #endif |
| OLD | NEW |