Chromium Code Reviews| Index: content/renderer/render_thread_impl.h |
| diff --git a/content/renderer/render_thread_impl.h b/content/renderer/render_thread_impl.h |
| index a7b2c74d78be82934e2be288455b9898cb37379d..7926bab05b2ed5a4331a4c96e2aeddf22ff5d0bf 100644 |
| --- a/content/renderer/render_thread_impl.h |
| +++ b/content/renderer/render_thread_impl.h |
| @@ -434,6 +434,7 @@ class CONTENT_EXPORT RenderThreadImpl |
| private: |
| // ChildThread |
| bool OnControlMessageReceived(const IPC::Message& msg) override; |
| + void OnProcessBackgrounded(bool backgrounded) override; |
| // GpuChannelHostFactory implementation: |
| bool IsMainThread() override; |
| @@ -476,6 +477,7 @@ class CONTENT_EXPORT RenderThreadImpl |
| bool RendererIsHidden() const; |
| void OnRendererHidden(); |
| void OnRendererVisible(); |
| + void OnSetWebKitSharedTimersSuspendedAfterHidden(bool suspend); |
|
Sami
2015/08/28 14:15:01
I guess this isn't needed?
jdduke (slow)
2015/08/31 18:36:08
Done.
|
| void ReleaseFreeMemory(); |
| @@ -540,6 +542,7 @@ class CONTENT_EXPORT RenderThreadImpl |
| int idle_notifications_to_skip_; |
| bool notify_webkit_of_modal_loop_; |
| + |
| bool webkit_shared_timer_suspended_; |
| // The following flag is used to control layout test specific behavior. |