Chromium Code Reviews| 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..ecc05ffbc603866faf9c8ee59f2fdfe985ea1633 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 interval) const = 0; |
|
jochen (gone - plz use gerrit)
2016/03/08 05:11:01
Can you add InSeconds to the argument's name?
|
| // Override the normal rules for whether a load has successfully committed |
| // in this frame. Used to propagate state when this frame has navigated |