tab_strip_model_observer.cc revision bda42a81ee5f9b20d2bebedcf0bbef1e30e5b293
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
3// found in the LICENSE file.
4
5#include "chrome/browser/tabs/tab_strip_model_observer.h"
6
7void TabStripModelObserver::TabInsertedAt(TabContents* contents,
8                                          int index,
9                                          bool foreground) {
10}
11
12void TabStripModelObserver::TabClosingAt(TabContents* contents, int index) {
13}
14
15void TabStripModelObserver::TabDetachedAt(TabContents* contents, int index) {
16}
17
18void TabStripModelObserver::TabDeselectedAt(TabContents* contents, int index) {
19}
20
21void TabStripModelObserver::TabSelectedAt(TabContents* old_contents,
22                                          TabContents* new_contents,
23                                          int index,
24                                          bool user_gesture) {
25}
26
27void TabStripModelObserver::TabMoved(TabContents* contents,
28                                     int from_index,
29                                     int to_index) {
30}
31
32void TabStripModelObserver::TabChangedAt(TabContents* contents, int index,
33                                         TabChangeType change_type) {
34}
35
36void TabStripModelObserver::TabReplacedAt(TabContents* old_contents,
37                                          TabContents* new_contents,
38                                          int index) {
39}
40
41void TabStripModelObserver::TabReplacedAt(TabContents* old_contents,
42                                          TabContents* new_contents,
43                                          int index,
44                                          TabReplaceType type) {
45  TabReplacedAt(old_contents, new_contents, index);
46}
47
48void TabStripModelObserver::TabPinnedStateChanged(TabContents* contents,
49                                                  int index) {
50}
51
52void TabStripModelObserver::TabMiniStateChanged(TabContents* contents,
53                                                int index) {
54}
55
56void TabStripModelObserver::TabBlockedStateChanged(TabContents* contents,
57                                                   int index) {
58}
59
60void TabStripModelObserver::TabStripEmpty() {}
61
62void TabStripModelObserver::TabStripModelDeleted() {}
63