diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-13 23:48:48 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-13 23:48:48 +0000 |
commit | c8db09166db6e7a112852477c7595ee7fd7986b2 (patch) | |
tree | b21bc6823ea431291c2ae2a893b1295950d50f69 /chrome/browser/tabs | |
parent | 1e3927d3ff39ed2f4407b08c5740dafc41a72a80 (diff) | |
download | chromium_src-c8db09166db6e7a112852477c7595ee7fd7986b2.zip chromium_src-c8db09166db6e7a112852477c7595ee7fd7986b2.tar.gz chromium_src-c8db09166db6e7a112852477c7595ee7fd7986b2.tar.bz2 |
Nukes the 3 arg TabMoved variant in favor of the 4 arg variant.
BUG=16634
TEST=none
Review URL: http://codereview.chromium.org/155441
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20581 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tabs')
-rw-r--r-- | chrome/browser/tabs/tab_strip_model.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/chrome/browser/tabs/tab_strip_model.h b/chrome/browser/tabs/tab_strip_model.h index 53ff04f..069d7f4 100644 --- a/chrome/browser/tabs/tab_strip_model.h +++ b/chrome/browser/tabs/tab_strip_model.h @@ -72,20 +72,12 @@ class TabStripModelObserver { int index, bool user_gesture) { } - // The specified TabContents at |from_index| was moved to |to_index|. - // TODO(sky): nuke and convert all to 4 arg variant. - virtual void TabMoved(TabContents* contents, - int from_index, - int to_index) { } - // The specified TabContents at |from_index| was moved to |to_index|. If // the pinned state of the tab is changing |pinned_state_changed| is true. virtual void TabMoved(TabContents* contents, int from_index, int to_index, - bool pinned_state_changed) { - TabMoved(contents, from_index, to_index); - } + bool pinned_state_changed) { } // The specified TabContents at |index| changed in some way. |contents| may // be an entirely different object and the old value is no longer available |