| 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 #include "components/scheduler/renderer/web_frame_scheduler_impl.h" | 5 #include "components/scheduler/renderer/web_frame_scheduler_impl.h" |
| 6 | 6 |
| 7 #include "base/trace_event/blame_context.h" | 7 #include "base/trace_event/blame_context.h" |
| 8 #include "components/scheduler/base/real_time_domain.h" | 8 #include "components/scheduler/base/real_time_domain.h" |
| 9 #include "components/scheduler/base/virtual_time_domain.h" | 9 #include "components/scheduler/base/virtual_time_domain.h" |
| 10 #include "components/scheduler/child/web_task_runner_impl.h" | 10 #include "components/scheduler/child/web_task_runner_impl.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 unthrottled_web_task_runner_.reset( | 101 unthrottled_web_task_runner_.reset( |
| 102 new WebTaskRunnerImpl(unthrottled_task_queue_)); | 102 new WebTaskRunnerImpl(unthrottled_task_queue_)); |
| 103 } | 103 } |
| 104 return unthrottled_web_task_runner_.get(); | 104 return unthrottled_web_task_runner_.get(); |
| 105 } | 105 } |
| 106 | 106 |
| 107 blink::WebViewScheduler* WebFrameSchedulerImpl::webViewScheduler() { | 107 blink::WebViewScheduler* WebFrameSchedulerImpl::webViewScheduler() { |
| 108 return parent_web_view_scheduler_; | 108 return parent_web_view_scheduler_; |
| 109 } | 109 } |
| 110 | 110 |
| 111 void WebFrameSchedulerImpl::incrementPendingResourceLoadCount() { | 111 void WebFrameSchedulerImpl::didStartLoading(unsigned long identifier) { |
| 112 if (parent_web_view_scheduler_) | 112 if (parent_web_view_scheduler_) |
| 113 parent_web_view_scheduler_->incrementPendingResourceLoadCount(); | 113 parent_web_view_scheduler_->DidStartLoading(identifier); |
| 114 } | 114 } |
| 115 | 115 |
| 116 void WebFrameSchedulerImpl::decrementPendingResourceLoadCount() { | 116 void WebFrameSchedulerImpl::didStopLoading(unsigned long identifier) { |
| 117 if (parent_web_view_scheduler_) | 117 if (parent_web_view_scheduler_) |
| 118 parent_web_view_scheduler_->decrementPendingResourceLoadCount(); | 118 parent_web_view_scheduler_->DidStopLoading(identifier); |
| 119 } | 119 } |
| 120 | 120 |
| 121 void WebFrameSchedulerImpl::setPageVisible(bool page_visible) { | 121 void WebFrameSchedulerImpl::setPageVisible(bool page_visible) { |
| 122 DCHECK(parent_web_view_scheduler_); | 122 DCHECK(parent_web_view_scheduler_); |
| 123 if (page_visible_ == page_visible) | 123 if (page_visible_ == page_visible) |
| 124 return; | 124 return; |
| 125 | 125 |
| 126 page_visible_ = page_visible; | 126 page_visible_ = page_visible; |
| 127 | 127 |
| 128 if (!timer_web_task_runner_ || | 128 if (!timer_web_task_runner_ || |
| (...skipping 21 matching lines...) Expand all Loading... |
| 150 parent_web_view_scheduler_->virtual_time_domain()); | 150 parent_web_view_scheduler_->virtual_time_domain()); |
| 151 } | 151 } |
| 152 | 152 |
| 153 if (loading_task_queue_) { | 153 if (loading_task_queue_) { |
| 154 loading_task_queue_->SetTimeDomain( | 154 loading_task_queue_->SetTimeDomain( |
| 155 parent_web_view_scheduler_->virtual_time_domain()); | 155 parent_web_view_scheduler_->virtual_time_domain()); |
| 156 } | 156 } |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace scheduler | 159 } // namespace scheduler |
| OLD | NEW |