| Index: content/child/blink_platform_impl.h
|
| diff --git a/content/child/blink_platform_impl.h b/content/child/blink_platform_impl.h
|
| index a840a5bb142ffc777a25d71eba82bb9613d2f7f7..25c164936ccbd92c1da18d348e5dfd2c19c2e7bf 100644
|
| --- a/content/child/blink_platform_impl.h
|
| +++ b/content/child/blink_platform_impl.h
|
| @@ -30,11 +30,6 @@
|
|
|
| namespace base {
|
| class MessageLoop;
|
| -class WaitableEvent;
|
| -}
|
| -
|
| -namespace scheduler {
|
| -class WebThreadBase;
|
| }
|
|
|
| namespace content {
|
| @@ -172,7 +167,6 @@
|
| double systemTraceTime() override;
|
| void cryptographicallyRandomValues(unsigned char* buffer,
|
| size_t length) override;
|
| - blink::WebThread* compositorThread() const override;
|
| blink::WebGestureCurve* createFlingAnimationCurve(
|
| blink::WebGestureDevice device_source,
|
| const blink::WebFloatPoint& velocity,
|
| @@ -193,20 +187,9 @@
|
| blink::WebString domKeyStringFromEnum(int dom_key) override;
|
| int domKeyEnumFromString(const blink::WebString& key_string) override;
|
|
|
| - scoped_ptr<scheduler::WebThreadBase> createThreadWithOptions(
|
| - const char* name,
|
| - base::Thread::Options);
|
| -
|
| - // This class does *not* own |compositor_thread|. It is the responsibility of
|
| - // the caller to ensure that the compositor thread is cleared before it is
|
| - // destructed.
|
| - void set_compositor_thread(scheduler::WebThreadBase* compositor_thread) {
|
| - compositor_thread_ = compositor_thread;
|
| - }
|
| -
|
| private:
|
| void InternalInit();
|
| - void UpdateWebThreadTLS(blink::WebThread* thread, base::WaitableEvent* event);
|
| + void UpdateWebThreadTLS(blink::WebThread* thread);
|
|
|
| bool IsMainThread() const;
|
|
|
| @@ -225,8 +208,6 @@
|
| scoped_refptr<PushDispatcher> push_dispatcher_;
|
| scoped_ptr<PermissionDispatcher> permission_client_;
|
| scoped_ptr<BackgroundSyncProvider> main_thread_sync_provider_;
|
| -
|
| - scheduler::WebThreadBase* compositor_thread_;
|
| };
|
|
|
| } // namespace content
|
|
|