| 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 e94adab34dfb9874688b420f4f958557e1903680..6a6c283145d4fe29c06fd53ddd6046e3fe6a063c 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() {
|
|
|