| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/tabs/tab_strip_model_observer.h" | 5 #include "chrome/browser/tabs/tab_strip_model_observer.h" |
| 6 | 6 |
| 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* contents, | 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* contents, |
| 8 int index, | 8 int index, |
| 9 bool foreground) { | 9 bool foreground) { |
| 10 } | 10 } |
| 11 | 11 |
| 12 void TabStripModelObserver::TabClosingAt(TabStripModel* tab_strip_model, | 12 void TabStripModelObserver::TabClosingAt(TabStripModel* tab_strip_model, |
| 13 TabContentsWrapper* contents, | 13 TabContentsWrapper* contents, |
| 14 int index) { | 14 int index) { |
| 15 } | 15 } |
| 16 | 16 |
| 17 void TabStripModelObserver::TabDetachedAt(TabContentsWrapper* contents, | 17 void TabStripModelObserver::TabDetachedAt(TabContentsWrapper* contents, |
| 18 int index) { | 18 int index) { |
| 19 } | 19 } |
| 20 | 20 |
| 21 void TabStripModelObserver::TabDeselected(TabContentsWrapper* contents) { | 21 void TabStripModelObserver::TabDeselected(TabContentsWrapper* contents) { |
| 22 } | 22 } |
| 23 | 23 |
| 24 void TabStripModelObserver::ActiveTabChanged(TabContentsWrapper* old_contents, | 24 void TabStripModelObserver::ActiveTabChanged(TabContentsWrapper* old_contents, |
| 25 TabContentsWrapper* new_contents, | 25 TabContentsWrapper* new_contents, |
| 26 int index, | 26 int index, |
| 27 bool user_gesture) { | 27 bool user_gesture) { |
| 28 } | 28 } |
| 29 | 29 |
| 30 void TabStripModelObserver::TabSelectionChanged( |
| 31 const TabStripSelectionModel& model) { |
| 32 } |
| 33 |
| 30 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, | 34 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, |
| 31 int from_index, | 35 int from_index, |
| 32 int to_index) { | 36 int to_index) { |
| 33 } | 37 } |
| 34 | 38 |
| 35 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, | 39 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, |
| 36 int index, | 40 int index, |
| 37 TabChangeType change_type) { | 41 TabChangeType change_type) { |
| 38 } | 42 } |
| 39 | 43 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 53 | 57 |
| 54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, | 58 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, |
| 55 int index) { | 59 int index) { |
| 56 } | 60 } |
| 57 | 61 |
| 58 void TabStripModelObserver::TabStripEmpty() {} | 62 void TabStripModelObserver::TabStripEmpty() {} |
| 59 | 63 |
| 60 void TabStripModelObserver::TabStripModelDeleted() {} | 64 void TabStripModelObserver::TabStripModelDeleted() {} |
| 61 | 65 |
| 62 void TabStripModelObserver::ActiveTabClicked(int index) {} | 66 void TabStripModelObserver::ActiveTabClicked(int index) {} |
| OLD | NEW |