| Index: third_party/WebKit/Source/platform/scheduler/base/queueing_time_estimator.cc
|
| diff --git a/third_party/WebKit/Source/platform/scheduler/base/queueing_time_estimator.cc b/third_party/WebKit/Source/platform/scheduler/base/queueing_time_estimator.cc
|
| index 4ec835b55cf85d874b5db7d07b76c75c70d3c207..526122d9247987f2d0df414375eaef2bd9b98948 100644
|
| --- a/third_party/WebKit/Source/platform/scheduler/base/queueing_time_estimator.cc
|
| +++ b/third_party/WebKit/Source/platform/scheduler/base/queueing_time_estimator.cc
|
| @@ -77,8 +77,8 @@ void QueueingTimeEstimator::OnTopLevelTaskCompleted(
|
| state_.OnTopLevelTaskCompleted(client_, task_end_time);
|
| }
|
|
|
| -void QueueingTimeEstimator::OnBeginNestedMessageLoop() {
|
| - state_.OnBeginNestedMessageLoop();
|
| +void QueueingTimeEstimator::OnBeginNestedRunLoop() {
|
| + state_.OnBeginNestedRunLoop();
|
| }
|
|
|
| void QueueingTimeEstimator::State::OnTopLevelTaskStarted(
|
| @@ -124,7 +124,7 @@ void QueueingTimeEstimator::State::OnTopLevelTaskCompleted(
|
| current_task_start_time = base::TimeTicks();
|
| }
|
|
|
| -void QueueingTimeEstimator::State::OnBeginNestedMessageLoop() {
|
| +void QueueingTimeEstimator::State::OnBeginNestedRunLoop() {
|
| in_nested_message_loop_ = true;
|
| }
|
|
|
|
|