Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: chrome/browser/tabs/tab_strip_model.h

Issue 63029: Clarify the documentation for loading_only on TabRenderer::UpdateData. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/views/tabs/tab_renderer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tabs/tab_strip_model.h
===================================================================
--- chrome/browser/tabs/tab_strip_model.h (revision 13154)
+++ chrome/browser/tabs/tab_strip_model.h (working copy)
@@ -48,13 +48,16 @@
virtual void TabInsertedAt(TabContents* contents,
int index,
bool foreground) { }
+
// The specified TabContents at |index| is being closed (and eventually
// destroyed).
virtual void TabClosingAt(TabContents* contents, int index) { }
+
// The specified TabContents at |index| is being detached, perhaps to be
// inserted in another TabStripModel. The implementer should take whatever
// action is necessary to deal with the TabContents no longer being present.
virtual void TabDetachedAt(TabContents* contents, int index) { }
+
// The selected TabContents changed from |old_contents| to |new_contents| at
// |index|. |user_gesture| specifies whether or not this was done by a user
// input event (e.g. clicking on a tab, keystroke) or as a side-effect of
@@ -63,15 +66,23 @@
TabContents* new_contents,
int index,
bool user_gesture) { }
+
// The specified TabContents at |from_index| was moved to |to_index|.
virtual void TabMoved(TabContents* contents,
int from_index,
int to_index) { }
+
// The specified TabContents at |index| changed in some way. |contents| may
// be an entirely different object and the old value is no longer available
// by the time this message is delivered.
+ //
+ // If only the loading state was updated, the loading_only flag should be
+ // specified. If other things change, set this flag to false to update
pink (ping after 24hrs) 2009/04/07 13:29:27 This seems a little backwards. The client implemen
brettw 2009/04/07 16:59:31 I think that comments should generally be written
+ // everything. This allows us to start/stop throbbing without updating the
+ // title (which may be an ugly URL if the real title hasn't come in yet).
virtual void TabChangedAt(TabContents* contents, int index,
bool loading_only) { }
+
// 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...
« no previous file with comments | « no previous file | chrome/browser/views/tabs/tab_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698