| Index: third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/ProgressTracker.cpp b/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| index fce737a18c358fb7be45ea142b15dabb2afdd748..fdda55adcda0d876b8aad894b9508cd99b82fdda 100644
|
| --- a/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/ProgressTracker.cpp
|
| @@ -103,13 +103,13 @@ FrameLoaderClient* ProgressTracker::frameLoaderClient() const {
|
| return m_frame->client();
|
| }
|
|
|
| -void ProgressTracker::progressStarted() {
|
| +void ProgressTracker::progressStarted(FrameLoadType type) {
|
| if (!m_frame->isLoading())
|
| frameLoaderClient()->didStartLoading(NavigationToDifferentDocument);
|
| reset();
|
| m_progressValue = initialProgressValue;
|
| m_frame->setIsLoading(true);
|
| - InspectorInstrumentation::frameStartedLoading(m_frame);
|
| + InspectorInstrumentation::frameStartedLoading(m_frame, type);
|
| }
|
|
|
| void ProgressTracker::progressCompleted() {
|
|
|