| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ | 5 #ifndef COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ |
| 6 #define COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ | 6 #define COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 WebViewSchedulerImpl* parent_web_view_scheduler, | 35 WebViewSchedulerImpl* parent_web_view_scheduler, |
| 36 base::trace_event::BlameContext* blame_context); | 36 base::trace_event::BlameContext* blame_context); |
| 37 | 37 |
| 38 ~WebFrameSchedulerImpl() override; | 38 ~WebFrameSchedulerImpl() override; |
| 39 | 39 |
| 40 // blink::WebFrameScheduler implementation: | 40 // blink::WebFrameScheduler implementation: |
| 41 void setFrameVisible(bool frame_visible) override; | 41 void setFrameVisible(bool frame_visible) override; |
| 42 void setPageVisible(bool page_visible) override; | 42 void setPageVisible(bool page_visible) override; |
| 43 blink::WebTaskRunner* loadingTaskRunner() override; | 43 blink::WebTaskRunner* loadingTaskRunner() override; |
| 44 blink::WebTaskRunner* timerTaskRunner() override; | 44 blink::WebTaskRunner* timerTaskRunner() override; |
| 45 blink::WebViewScheduler* webViewScheduler() override; |
| 45 | 46 |
| 46 void OnVirtualTimeDomainChanged(); | 47 void OnVirtualTimeDomainChanged(); |
| 47 | 48 |
| 48 private: | 49 private: |
| 49 friend class WebViewSchedulerImpl; | 50 friend class WebViewSchedulerImpl; |
| 50 | 51 |
| 51 void DetachFromWebViewScheduler(); | 52 void DetachFromWebViewScheduler(); |
| 52 void ApplyPolicyToTimerQueue(); | 53 void ApplyPolicyToTimerQueue(); |
| 53 | 54 |
| 54 scoped_refptr<TaskQueue> loading_task_queue_; | 55 scoped_refptr<TaskQueue> loading_task_queue_; |
| 55 scoped_refptr<TaskQueue> timer_task_queue_; | 56 scoped_refptr<TaskQueue> timer_task_queue_; |
| 56 std::unique_ptr<WebTaskRunnerImpl> loading_web_task_runner_; | 57 std::unique_ptr<WebTaskRunnerImpl> loading_web_task_runner_; |
| 57 std::unique_ptr<WebTaskRunnerImpl> timer_web_task_runner_; | 58 std::unique_ptr<WebTaskRunnerImpl> timer_web_task_runner_; |
| 58 RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED | 59 RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED |
| 59 WebViewSchedulerImpl* parent_web_view_scheduler_; // NOT OWNED | 60 WebViewSchedulerImpl* parent_web_view_scheduler_; // NOT OWNED |
| 60 base::trace_event::BlameContext* blame_context_; // NOT OWNED | 61 base::trace_event::BlameContext* blame_context_; // NOT OWNED |
| 61 TaskQueue::PumpPolicy virtual_time_pump_policy_; | 62 TaskQueue::PumpPolicy virtual_time_pump_policy_; |
| 62 bool frame_visible_; | 63 bool frame_visible_; |
| 63 bool page_visible_; | 64 bool page_visible_; |
| 64 | 65 |
| 65 DISALLOW_COPY_AND_ASSIGN(WebFrameSchedulerImpl); | 66 DISALLOW_COPY_AND_ASSIGN(WebFrameSchedulerImpl); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace scheduler | 69 } // namespace scheduler |
| 69 | 70 |
| 70 #endif // COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ | 71 #endif // COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ |
| OLD | NEW |