| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ui/tabs/tab_strip_model_observer.h" | 5 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 6 | 6 |
| 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* contents, | 7 void TabStripModelObserver::TabInsertedAt(TabContents* 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 TabContents* contents, |
| 14 int index) { | 14 int index) { |
| 15 } | 15 } |
| 16 | 16 |
| 17 void TabStripModelObserver::TabDetachedAt(TabContentsWrapper* contents, | 17 void TabStripModelObserver::TabDetachedAt(TabContents* contents, |
| 18 int index) { | 18 int index) { |
| 19 } | 19 } |
| 20 | 20 |
| 21 void TabStripModelObserver::TabDeactivated(TabContentsWrapper* contents) { | 21 void TabStripModelObserver::TabDeactivated(TabContents* contents) { |
| 22 } | 22 } |
| 23 | 23 |
| 24 void TabStripModelObserver::ActiveTabChanged(TabContentsWrapper* old_contents, | 24 void TabStripModelObserver::ActiveTabChanged(TabContents* old_contents, |
| 25 TabContentsWrapper* new_contents, | 25 TabContents* new_contents, |
| 26 int index, | 26 int index, |
| 27 bool user_gesture) { | 27 bool user_gesture) { |
| 28 } | 28 } |
| 29 | 29 |
| 30 void TabStripModelObserver::TabSelectionChanged( | 30 void TabStripModelObserver::TabSelectionChanged( |
| 31 TabStripModel* tab_strip_model, | 31 TabStripModel* tab_strip_model, |
| 32 const TabStripSelectionModel& model) { | 32 const TabStripSelectionModel& model) { |
| 33 } | 33 } |
| 34 | 34 |
| 35 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, | 35 void TabStripModelObserver::TabMoved(TabContents* contents, |
| 36 int from_index, | 36 int from_index, |
| 37 int to_index) { | 37 int to_index) { |
| 38 } | 38 } |
| 39 | 39 |
| 40 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, | 40 void TabStripModelObserver::TabChangedAt(TabContents* contents, |
| 41 int index, | 41 int index, |
| 42 TabChangeType change_type) { | 42 TabChangeType change_type) { |
| 43 } | 43 } |
| 44 | 44 |
| 45 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, | 45 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, |
| 46 TabContentsWrapper* old_contents, | 46 TabContents* old_contents, |
| 47 TabContentsWrapper* new_contents, | 47 TabContents* new_contents, |
| 48 int index) { | 48 int index) { |
| 49 } | 49 } |
| 50 | 50 |
| 51 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents, | 51 void TabStripModelObserver::TabPinnedStateChanged(TabContents* contents, |
| 52 int index) { | 52 int index) { |
| 53 } | 53 } |
| 54 | 54 |
| 55 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents, | 55 void TabStripModelObserver::TabMiniStateChanged(TabContents* contents, |
| 56 int index) { | 56 int index) { |
| 57 } | 57 } |
| 58 | 58 |
| 59 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, | 59 void TabStripModelObserver::TabBlockedStateChanged(TabContents* contents, |
| 60 int index) { | 60 int index) { |
| 61 } | 61 } |
| 62 | 62 |
| 63 void TabStripModelObserver::TabStripEmpty() {} | 63 void TabStripModelObserver::TabStripEmpty() {} |
| 64 | 64 |
| 65 void TabStripModelObserver::TabStripModelDeleted() {} | 65 void TabStripModelObserver::TabStripModelDeleted() {} |
| 66 | 66 |
| 67 void TabStripModelObserver::ActiveTabClicked(int index) {} | 67 void TabStripModelObserver::ActiveTabClicked(int index) {} |
| OLD | NEW |