| Index: third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
|
| diff --git a/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp b/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
|
| index 4174be164225b743b5a64122e9dfa84287d4f92a..16ce76704eb490b20abf716abf2b101b5c6fefb2 100644
|
| --- a/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
|
| +++ b/third_party/WebKit/Source/core/loader/NavigationScheduler.cpp
|
| @@ -274,9 +274,9 @@ bool NavigationScheduler::locationChangePending()
|
| return m_redirect && m_redirect->isLocationChange();
|
| }
|
|
|
| -bool NavigationScheduler::isNavigationScheduled() const
|
| +bool NavigationScheduler::isNavigationScheduledWithin(double interval) const
|
| {
|
| - return m_redirect;
|
| + return m_redirect && m_redirect->delay() <= interval;
|
| }
|
|
|
| inline bool NavigationScheduler::shouldScheduleReload() const
|
|
|