| Index: third_party/WebKit/public/web/WebLocalFrame.h
|
| diff --git a/third_party/WebKit/public/web/WebLocalFrame.h b/third_party/WebKit/public/web/WebLocalFrame.h
|
| index dae559c1b15b0cd0730ff03bd1a0ad4f5cea50c2..2d0eeb2537b49bddb0045f679802a91c31a45fa1 100644
|
| --- a/third_party/WebKit/public/web/WebLocalFrame.h
|
| +++ b/third_party/WebKit/public/web/WebLocalFrame.h
|
| @@ -133,8 +133,8 @@ public:
|
| // instead.
|
| virtual bool isResourceLoadInProgress() const = 0;
|
|
|
| - // Returns true if there is a pending redirect or location change.
|
| - // This could be caused by:
|
| + // Returns true if there is a pending redirect or location change
|
| + // within specified interval (in seconds). This could be caused by:
|
| // * an HTTP Refresh header
|
| // * an X-Frame-Options header
|
| // * the respective http-equiv meta tags
|
| @@ -142,7 +142,7 @@ public:
|
| // * CSP policy block
|
| // * reload
|
| // * form submission
|
| - virtual bool isNavigationScheduled() const = 0;
|
| + virtual bool isNavigationScheduledWithin(double intervalInSeconds) const = 0;
|
|
|
| // Override the normal rules for whether a load has successfully committed
|
| // in this frame. Used to propagate state when this frame has navigated
|
|
|