OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" | 7 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" |
8 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 8 #include "chrome/browser/ui/views/tabs/tab_strip.h" |
9 | 9 |
10 FakeBaseTabStripController::FakeBaseTabStripController() | 10 FakeBaseTabStripController::FakeBaseTabStripController() |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 } | 113 } |
114 | 114 |
115 void FakeBaseTabStripController::LayoutTypeMaybeChanged() { | 115 void FakeBaseTabStripController::LayoutTypeMaybeChanged() { |
116 } | 116 } |
117 | 117 |
118 void FakeBaseTabStripController::OnStartedDraggingTabs() { | 118 void FakeBaseTabStripController::OnStartedDraggingTabs() { |
119 } | 119 } |
120 | 120 |
121 void FakeBaseTabStripController::OnStoppedDraggingTabs() { | 121 void FakeBaseTabStripController::OnStoppedDraggingTabs() { |
122 } | 122 } |
| 123 |
| 124 Profile* FakeBaseTabStripController::GetProfile() { |
| 125 return NULL; |
| 126 } |
OLD | NEW |