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