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
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
6
7using content::WebContents;
8
9void TabStripModelObserver::TabInsertedAt(WebContents* contents,
10                                          int index,
11                                          bool foreground) {
12}
13
14void TabStripModelObserver::TabClosingAt(TabStripModel* tab_strip_model,
15                                         WebContents* contents,
16                                         int index) {
17}
18
19void TabStripModelObserver::TabDetachedAt(WebContents* contents,
20                                          int index) {
21}
22
23void TabStripModelObserver::TabDeactivated(WebContents* contents) {
24}
25
26void TabStripModelObserver::ActiveTabChanged(WebContents* old_contents,
27                                             WebContents* new_contents,
28                                             int index,
29                                             int reason) {
30}
31
32void TabStripModelObserver::TabSelectionChanged(
33    TabStripModel* tab_strip_model,
34    const ui::ListSelectionModel& model) {
35}
36
37void TabStripModelObserver::TabMoved(WebContents* contents,
38                                     int from_index,
39                                     int to_index) {
40}
41
42void TabStripModelObserver::TabChangedAt(WebContents* contents,
43                                         int index,
44                                         TabChangeType change_type) {
45}
46
47void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model,
48                                          WebContents* old_contents,
49                                          WebContents* new_contents,
50                                          int index) {
51}
52
53void TabStripModelObserver::TabPinnedStateChanged(WebContents* contents,
54                                                  int index) {
55}
56
57void TabStripModelObserver::TabMiniStateChanged(WebContents* contents,
58                                                int index) {
59}
60
61void TabStripModelObserver::TabBlockedStateChanged(WebContents* contents,
62                                                   int index) {
63}
64
65void TabStripModelObserver::TabStripEmpty() {
66}
67
68void TabStripModelObserver::WillCloseAllTabs() {
69}
70
71void TabStripModelObserver::CloseAllTabsCanceled() {
72}
73
74void TabStripModelObserver::TabStripModelDeleted() {
75}
76