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_WEB_UI_BROWSERTEST_H_ | 5 #ifndef CHROME_TEST_BASE_WEB_UI_BROWSER_TEST_H_ |
6 #define CHROME_TEST_BASE_WEB_UI_BROWSERTEST_H_ | 6 #define CHROME_TEST_BASE_WEB_UI_BROWSER_TEST_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/memory/scoped_vector.h" | 12 #include "base/memory/scoped_vector.h" |
13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
14 #include "chrome/test/base/in_process_browser_test.h" | 14 #include "chrome/test/base/in_process_browser_test.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 // User library search paths. | 181 // User library search paths. |
182 std::vector<base::FilePath> library_search_paths_; | 182 std::vector<base::FilePath> library_search_paths_; |
183 | 183 |
184 // When this is non-NULL, this is The WebUI instance used for testing. | 184 // When this is non-NULL, this is The WebUI instance used for testing. |
185 // Otherwise the selected tab's web_ui is used. | 185 // Otherwise the selected tab's web_ui is used. |
186 content::WebUI* override_selected_web_ui_; | 186 content::WebUI* override_selected_web_ui_; |
187 | 187 |
188 scoped_ptr<TestChromeWebUIControllerFactory> test_factory_; | 188 scoped_ptr<TestChromeWebUIControllerFactory> test_factory_; |
189 }; | 189 }; |
190 | 190 |
191 #endif // CHROME_TEST_BASE_WEB_UI_BROWSERTEST_H_ | 191 #endif // CHROME_TEST_BASE_WEB_UI_BROWSER_TEST_H_ |
OLD | NEW |