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

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

Issue 6913026: Compact Navigation prototype (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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) 2011 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 }
11 11
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 int index) { 51 int index) {
52 } 52 }
53 53
54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents, 54 void TabStripModelObserver::TabBlockedStateChanged(TabContentsWrapper* contents,
55 int index) { 55 int index) {
56 } 56 }
57 57
58 void TabStripModelObserver::TabStripEmpty() {} 58 void TabStripModelObserver::TabStripEmpty() {}
59 59
60 void TabStripModelObserver::TabStripModelDeleted() {} 60 void TabStripModelObserver::TabStripModelDeleted() {}
61
62 void TabStripModelObserver::TabReselected(int index) {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698