| 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 97ab4eede67f779c69e8f9163a68afecd6686a59..ae8cb46bc908a6f80a58cb72478bbc24613a3623 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 {
|
| @@ -152,6 +153,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
|
| @@ -202,6 +204,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_;
|
|
|