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/test/base/test_browser_window.h" | 5 #include "chrome/test/base/test_browser_window.h" |
6 | 6 |
7 #include "chrome/browser/ui/browser_list.h" | 7 #include "chrome/browser/ui/browser_list.h" |
8 #include "chrome/browser/ui/browser_list_observer.h" | 8 #include "chrome/browser/ui/browser_list_observer.h" |
9 #include "ui/gfx/rect.h" | 9 #include "ui/gfx/geometry/rect.h" |
10 | 10 |
11 | 11 |
12 // Helpers -------------------------------------------------------------------- | 12 // Helpers -------------------------------------------------------------------- |
13 | 13 |
14 namespace chrome { | 14 namespace chrome { |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
18 // Handles destroying a TestBrowserWindow when the Browser it is attached to is | 18 // Handles destroying a TestBrowserWindow when the Browser it is attached to is |
19 // destroyed. | 19 // destroyed. |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 } | 215 } |
216 | 216 |
217 int | 217 int |
218 TestBrowserWindow::GetRenderViewHeightInsetWithDetachedBookmarkBar() { | 218 TestBrowserWindow::GetRenderViewHeightInsetWithDetachedBookmarkBar() { |
219 return 0; | 219 return 0; |
220 } | 220 } |
221 | 221 |
222 void TestBrowserWindow::ExecuteExtensionCommand( | 222 void TestBrowserWindow::ExecuteExtensionCommand( |
223 const extensions::Extension* extension, | 223 const extensions::Extension* extension, |
224 const extensions::Command& command) {} | 224 const extensions::Command& command) {} |
OLD | NEW |