diff options
Diffstat (limited to 'chrome/browser/tabs/tab_strip_model.h')
-rw-r--r-- | chrome/browser/tabs/tab_strip_model.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/chrome/browser/tabs/tab_strip_model.h b/chrome/browser/tabs/tab_strip_model.h index ebdec91..386599c 100644 --- a/chrome/browser/tabs/tab_strip_model.h +++ b/chrome/browser/tabs/tab_strip_model.h @@ -69,12 +69,6 @@ class TabStripModelObserver { int to_index) { } // The specified TabContents at |index| changed in some way. virtual void TabChangedAt(TabContents* contents, int index) { } - // Loading progress representations for tabs should be validated/updated. - // TODO(beng): this wiring is cracktarded. consider revising. The loading - // animation timer should live in BrowserView2, and from there - // notify both the tabstrip and the window icon. - // clean this up once XPFrame and VistaFrame have retired. - virtual void TabValidateAnimations() { } // The TabStripModel now no longer has any "significant" (user created or // user manipulated) tabs. The implementer may use this as a trigger to try // and close the window containing the TabStripModel, for example... @@ -131,11 +125,6 @@ class TabStripModelDelegate { // window. virtual void DuplicateContentsAt(int index) = 0; - // Called every time the the throbber needs to be updated. We have this to - // give the browser/frame a chance to implement some loading animation. This - // is used by simple web application frames. - virtual void ValidateLoadingAnimations() = 0; - // Called when a drag session has completed and the frame that initiated the // the session should be closed. virtual void CloseFrameAfterDragSession() = 0; @@ -280,11 +269,6 @@ class TabStripModel : public NotificationObserver { // changed in some way. void UpdateTabContentsStateAt(int index); - // Notify any observers that Loading progress for TabContents should be - // validated. - // TODO(beng): (Cleanup) This should definitely be moved to the View. - void UpdateTabContentsLoadingAnimations(); - // Make sure there is an auto-generated New Tab tab in the TabStripModel. // If |force_create| is true, the New Tab will be created even if the // preference is set to false (used by startup). |