| Index: content/renderer/renderer_blink_platform_impl.h
|
| diff --git a/content/renderer/renderer_blink_platform_impl.h b/content/renderer/renderer_blink_platform_impl.h
|
| index 06e599dc28724fa239f892b250bee1136cbb4ea0..57e188c0c512cbac89e2a0e679b68435dc0def11 100644
|
| --- a/content/renderer/renderer_blink_platform_impl.h
|
| +++ b/content/renderer/renderer_blink_platform_impl.h
|
| @@ -50,6 +50,7 @@ class ThreadSafeSender;
|
| class WebClipboardImpl;
|
| class WebDatabaseObserverImpl;
|
| class WebFileSystemImpl;
|
| +class WebThreadImplForScheduler;
|
| class WebSchedulerImpl;
|
|
|
| class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
|
| @@ -153,6 +154,7 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
|
| virtual void vibrate(unsigned int milliseconds);
|
| virtual void cancelVibration();
|
| virtual blink::WebScheduler* scheduler();
|
| + virtual blink::WebThread* currentThread();
|
|
|
| // Set the PlatformEventObserverBase in |platform_event_observers_| associated
|
| // with |type| to |observer|. If there was already an observer associated to
|
| @@ -203,6 +205,7 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
|
| device::VibrationManagerPtr& GetConnectedVibrationManagerService();
|
|
|
| scoped_ptr<WebSchedulerImpl> web_scheduler_;
|
| + scoped_ptr<WebThreadImplForScheduler> main_thread_;
|
|
|
| scoped_ptr<RendererClipboardDelegate> clipboard_delegate_;
|
| scoped_ptr<WebClipboardImpl> clipboard_;
|
|
|