| 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 using content::WebContents; | 7 using content::WebContents; |
| 8 | 8 |
| 9 void TabStripModelObserver::TabInsertedAt(WebContents* contents, | 9 void TabStripModelObserver::TabInsertedAt(WebContents* contents, |
| 10 int index, | 10 int index, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 int from_index, | 38 int from_index, |
| 39 int to_index) { | 39 int to_index) { |
| 40 } | 40 } |
| 41 | 41 |
| 42 void TabStripModelObserver::TabChangedAt(WebContents* contents, | 42 void TabStripModelObserver::TabChangedAt(WebContents* contents, |
| 43 int index, | 43 int index, |
| 44 TabChangeType change_type) { | 44 TabChangeType change_type) { |
| 45 } | 45 } |
| 46 | 46 |
| 47 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, | 47 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model, |
| 48 TabContents* old_contents, | 48 WebContents* old_contents, |
| 49 TabContents* new_contents, | 49 WebContents* new_contents, |
| 50 int index) { | 50 int index) { |
| 51 } | 51 } |
| 52 | 52 |
| 53 void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents, | 53 void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents, |
| 54 int index) { | 54 int index) { |
| 55 } | 55 } |
| 56 | 56 |
| 57 void TabStripModelObserver::TabMiniStateChanged(WebContents* contents, | 57 void TabStripModelObserver::TabMiniStateChanged(WebContents* contents, |
| 58 int index) { | 58 int index) { |
| 59 } | 59 } |
| 60 | 60 |
| 61 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents, | 61 void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents, |
| 62 int index) { | 62 int index) { |
| 63 } | 63 } |
| 64 | 64 |
| 65 void TabStripModelObserver::TabStripEmpty() {} | 65 void TabStripModelObserver::TabStripEmpty() {} |
| 66 | 66 |
| 67 void TabStripModelObserver::TabStripModelDeleted() {} | 67 void TabStripModelObserver::TabStripModelDeleted() {} |
| OLD | NEW |