OLD | NEW |
1 // Copyright (c) 2011 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/ui/views/tabs/fake_base_tab_strip_controller.h" | 5 #include "chrome/browser/ui/views/tabs/fake_base_tab_strip_controller.h" |
6 | 6 |
7 FakeBaseTabStripController::~FakeBaseTabStripController() { | 7 FakeBaseTabStripController::~FakeBaseTabStripController() { |
8 } | 8 } |
9 | 9 |
10 int FakeBaseTabStripController::GetCount() const { | 10 int FakeBaseTabStripController::GetCount() const { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 bool FakeBaseTabStripController::IsCompatibleWith(BaseTabStrip* other) const { | 73 bool FakeBaseTabStripController::IsCompatibleWith(BaseTabStrip* other) const { |
74 return false; | 74 return false; |
75 } | 75 } |
76 | 76 |
77 void FakeBaseTabStripController::CreateNewTab() { | 77 void FakeBaseTabStripController::CreateNewTab() { |
78 } | 78 } |
79 | 79 |
80 void FakeBaseTabStripController::ClickActiveTab(int index) { | 80 void FakeBaseTabStripController::ClickActiveTab(int index) { |
81 } | 81 } |
82 | 82 |
| 83 bool FakeBaseTabStripController::SizeTabButtonToTopOfTabStrip() { |
| 84 return false; |
| 85 } |
OLD | NEW |