Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: chrome/browser/tabs/tab_strip_model_observer.cc

Issue 4694008: Make pink's TabContentsWrapper change compile on Windows.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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(TabContents* contents, 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* 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 TabContents* contents, 13 TabContentsWrapper* contents,
14 int index) { 14 int index) {
15 } 15 }
16 16
17 void TabStripModelObserver::TabDetachedAt(TabContents* contents, int index) { 17 void TabStripModelObserver::TabDetachedAt(TabContentsWrapper* contents,
18 int index) {
18 } 19 }
19 20
20 void TabStripModelObserver::TabDeselectedAt(TabContents* contents, int index) { 21 void TabStripModelObserver::TabDeselectedAt(TabContentsWrapper* contents,
22 int index) {
21 } 23 }
22 24
23 void TabStripModelObserver::TabSelectedAt(TabContents* old_contents, 25 void TabStripModelObserver::TabSelectedAt(TabContentsWrapper* old_contents,
24 TabContents* new_contents, 26 TabContentsWrapper* new_contents,
25 int index, 27 int index,
26 bool user_gesture) { 28 bool user_gesture) {
27 } 29 }
28 30
29 void TabStripModelObserver::TabMoved(TabContents* contents, 31 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents,
30 int from_index, 32 int from_index,
31 int to_index) { 33 int to_index) {
32 } 34 }
33 35
34 void TabStripModelObserver::TabChangedAt(TabContents* contents, int index, 36 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents,
37 int index,
35 TabChangeType change_type) { 38 TabChangeType change_type) {
36 } 39 }
37 40
38 void TabStripModelObserver::TabReplacedAt(TabContents* old_contents, 41 void TabStripModelObserver::TabReplacedAt(TabContentsWrapper* old_contents,
39 TabContents* new_contents, 42 TabContentsWrapper* new_contents,
40 int index) { 43 int index) {
41 } 44 }
42 45
43 void TabStripModelObserver::TabPinnedStateChanged(TabContents* contents, 46 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents,
44 int index) { 47 int index) {
45 } 48 }
46 49
47 void TabStripModelObserver::TabMiniStateChanged(TabContents* contents, 50 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents,
48 int index) { 51 int index) {
49 } 52 }
50 53
51 void TabStripModelObserver::TabBlockedStateChanged(TabContents* contents, 54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents,
52 int index) { 55 int index) {
53 } 56 }
54 57
55 void TabStripModelObserver::TabStripEmpty() {} 58 void TabStripModelObserver::TabStripEmpty() {}
56 59
57 void TabStripModelObserver::TabStripModelDeleted() {} 60 void TabStripModelObserver::TabStripModelDeleted() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698