| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, | 31 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, |
| 32 int from_index, | 32 int from_index, |
| 33 int to_index) { | 33 int to_index) { |
| 34 } | 34 } |
| 35 | 35 |
| 36 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, | 36 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, |
| 37 int index, | 37 int index, |
| 38 TabChangeType change_type) { | 38 TabChangeType change_type) { |
| 39 } | 39 } |
| 40 | 40 |
| 41 void TabStripModelObserver::TabReplacedAt(TabContentsWrapper* old_contents, | 41 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, |
| 42 TabContentsWrapper* old_contents, |
| 42 TabContentsWrapper* new_contents, | 43 TabContentsWrapper* new_contents, |
| 43 int index) { | 44 int index) { |
| 44 } | 45 } |
| 45 | 46 |
| 46 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents, | 47 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents, |
| 47 int index) { | 48 int index) { |
| 48 } | 49 } |
| 49 | 50 |
| 50 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents, | 51 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents, |
| 51 int index) { | 52 int index) { |
| 52 } | 53 } |
| 53 | 54 |
| 54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, | 55 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, |
| 55 int index) { | 56 int index) { |
| 56 } | 57 } |
| 57 | 58 |
| 58 void TabStripModelObserver::TabStripEmpty() {} | 59 void TabStripModelObserver::TabStripEmpty() {} |
| 59 | 60 |
| 60 void TabStripModelObserver::TabStripModelDeleted() {} | 61 void TabStripModelObserver::TabStripModelDeleted() {} |
| OLD | NEW |