| 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 25 matching lines...) Expand all Loading... |
| 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::WebTaskRunner* unthrottledTaskRunner() override; | 45 blink::WebTaskRunner* unthrottledTaskRunner() override; |
| 46 blink::WebViewScheduler* webViewScheduler() override; |
| 47 void incrementPendingResourceLoadCount() override; |
| 48 void decrementPendingResourceLoadCount() override; |
| 46 | 49 |
| 47 void OnVirtualTimeDomainChanged(); | 50 void OnVirtualTimeDomainChanged(); |
| 48 | 51 |
| 49 private: | 52 private: |
| 50 friend class WebViewSchedulerImpl; | 53 friend class WebViewSchedulerImpl; |
| 51 | 54 |
| 52 void DetachFromWebViewScheduler(); | 55 void DetachFromWebViewScheduler(); |
| 53 void ApplyPolicyToTimerQueue(); | 56 void ApplyPolicyToTimerQueue(); |
| 54 | 57 |
| 55 scoped_refptr<TaskQueue> loading_task_queue_; | 58 scoped_refptr<TaskQueue> loading_task_queue_; |
| 56 scoped_refptr<TaskQueue> timer_task_queue_; | 59 scoped_refptr<TaskQueue> timer_task_queue_; |
| 57 scoped_refptr<TaskQueue> unthrottled_task_queue_; | 60 scoped_refptr<TaskQueue> unthrottled_task_queue_; |
| 58 std::unique_ptr<WebTaskRunnerImpl> loading_web_task_runner_; | 61 std::unique_ptr<WebTaskRunnerImpl> loading_web_task_runner_; |
| 59 std::unique_ptr<WebTaskRunnerImpl> timer_web_task_runner_; | 62 std::unique_ptr<WebTaskRunnerImpl> timer_web_task_runner_; |
| 60 std::unique_ptr<WebTaskRunnerImpl> unthrottled_web_task_runner_; | 63 std::unique_ptr<WebTaskRunnerImpl> unthrottled_web_task_runner_; |
| 61 RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED | 64 RendererSchedulerImpl* renderer_scheduler_; // NOT OWNED |
| 62 WebViewSchedulerImpl* parent_web_view_scheduler_; // NOT OWNED | 65 WebViewSchedulerImpl* parent_web_view_scheduler_; // NOT OWNED |
| 63 base::trace_event::BlameContext* blame_context_; // NOT OWNED | 66 base::trace_event::BlameContext* blame_context_; // NOT OWNED |
| 64 TaskQueue::PumpPolicy virtual_time_pump_policy_; | 67 TaskQueue::PumpPolicy virtual_time_pump_policy_; |
| 65 bool frame_visible_; | 68 bool frame_visible_; |
| 66 bool page_visible_; | 69 bool page_visible_; |
| 67 | 70 |
| 68 DISALLOW_COPY_AND_ASSIGN(WebFrameSchedulerImpl); | 71 DISALLOW_COPY_AND_ASSIGN(WebFrameSchedulerImpl); |
| 69 }; | 72 }; |
| 70 | 73 |
| 71 } // namespace scheduler | 74 } // namespace scheduler |
| 72 | 75 |
| 73 #endif // COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ | 76 #endif // COMPONENTS_SCHEDULER_RENDERER_WEB_FRAME_SCHEDULER_IMPL_H_ |
| OLD | NEW |