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

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

Issue 6155003: Changes instant so that the newly created tab has a new id. Doing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months 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(TabContentsWrapper* contents, 7 void TabStripModelObserver::TabInsertedAt(TabContentsWrapper* contents,
8 int index, 8 int index,
9 bool foreground) { 9 bool foreground) {
10 } 10 }
(...skipping 20 matching lines...) Expand all
31 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents, 31 void TabStripModelObserver::TabMoved(TabContentsWrapper* contents,
32 int from_index, 32 int from_index,
33 int to_index) { 33 int to_index) {
34 } 34 }
35 35
36 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents, 36 void TabStripModelObserver::TabChangedAt(TabContentsWrapper* contents,
37 int index, 37 int index,
38 TabChangeType change_type) { 38 TabChangeType change_type) {
39 } 39 }
40 40
41 void TabStripModelObserver::TabReplacedAt(TabContentsWrapper* old_contents, 41 void TabStripModelObserver::TabReplacedAt(TabStripModel* tab_strip_model,
42 TabContentsWrapper* old_contents,
42 TabContentsWrapper* new_contents, 43 TabContentsWrapper* new_contents,
43 int index) { 44 int index) {
44 } 45 }
45 46
46 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents, 47 void TabStripModelObserver::TabPinnedStateChanged(TabContentsWrapper* contents,
47 int index) { 48 int index) {
48 } 49 }
49 50
50 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents, 51 void TabStripModelObserver::TabMiniStateChanged(TabContentsWrapper* contents,
51 int index) { 52 int index) {
52 } 53 }
53 54
54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, 55 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents,
55 int index) { 56 int index) {
56 } 57 }
57 58
58 void TabStripModelObserver::TabStripEmpty() {} 59 void TabStripModelObserver::TabStripEmpty() {}
59 60
60 void TabStripModelObserver::TabStripModelDeleted() {} 61 void TabStripModelObserver::TabStripModelDeleted() {}
OLDNEW
« no previous file with comments | « chrome/browser/tabs/tab_strip_model_observer.h ('k') | chrome/browser/tabs/tab_strip_model_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698