Index: chrome/browser/sessions/tab_loader_delegate.h |
diff --git a/chrome/browser/sessions/tab_loader_delegate.h b/chrome/browser/sessions/tab_loader_delegate.h |
index f545354788425d9fc575451a9a43c00f48d652e8..e396ac5ab97cb09daf7fb250257bfcc2c88584bb 100644 |
--- a/chrome/browser/sessions/tab_loader_delegate.h |
+++ b/chrome/browser/sessions/tab_loader_delegate.h |
@@ -27,8 +27,12 @@ class TabLoaderDelegate { |
// The callback object is valid as long as this object exists. |
static scoped_ptr<TabLoaderDelegate> Create(TabLoaderCallback* callback); |
+ // Returns the default timeout time after which the first non-visible tab |
+ // gets loaded if the first (visible) tab did not finish loading. |
+ virtual base::TimeDelta GetFirstTabLoadingTimeout() const = 0; |
+ |
// Returns the default timeout time after which the next tab gets loaded if |
- // the previous tab did not finish to load. |
+ // the previous tab did not finish loading. |
virtual base::TimeDelta GetTimeoutBeforeLoadingNextTab() const = 0; |
}; |