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 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
7 | 7 |
8 #include "base/basictypes.h" | |
9 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
11 #include "chrome/browser/download/test_download_shelf.h" | 11 #include "chrome/browser/download/test_download_shelf.h" |
12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
13 #include "chrome/browser/ui/browser_window.h" | 13 #include "chrome/browser/ui/browser_window.h" |
14 #include "chrome/browser/ui/location_bar/location_bar.h" | 14 #include "chrome/browser/ui/location_bar/location_bar.h" |
15 | 15 |
16 class LocationBarTesting; | 16 class LocationBarTesting; |
17 class OmniboxView; | 17 class OmniboxView; |
18 | 18 |
19 namespace extensions { | 19 namespace extensions { |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 | 210 |
211 namespace chrome { | 211 namespace chrome { |
212 | 212 |
213 // Helper that handle the lifetime of TestBrowserWindow instances. | 213 // Helper that handle the lifetime of TestBrowserWindow instances. |
214 scoped_ptr<Browser> CreateBrowserWithTestWindowForParams( | 214 scoped_ptr<Browser> CreateBrowserWithTestWindowForParams( |
215 Browser::CreateParams* params); | 215 Browser::CreateParams* params); |
216 | 216 |
217 } // namespace chrome | 217 } // namespace chrome |
218 | 218 |
219 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ | 219 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ |
OLD | NEW |