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 #ifndef CONTENT_BROWSER_WEBUI_WEB_UI_BROWSERTEST_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_WEB_UI_BROWSERTEST_H_ |
6 #define CONTENT_BROWSER_WEBUI_WEB_UI_BROWSERTEST_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_WEB_UI_BROWSERTEST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "chrome/browser/ui/webui/web_ui_test_handler.h" | 12 #include "chrome/browser/ui/webui/web_ui_test_handler.h" |
13 #include "chrome/test/in_process_browser_test.h" | 13 #include "chrome/test/in_process_browser_test.h" |
14 | 14 |
15 class Value; | 15 class Value; |
16 class WebUIMessageHandler; | 16 class WebUIMessageHandler; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 // Handles test framework messages. | 91 // Handles test framework messages. |
92 scoped_ptr<WebUITestHandler> test_handler_; | 92 scoped_ptr<WebUITestHandler> test_handler_; |
93 | 93 |
94 // Location of test data (currently test/data/webui). | 94 // Location of test data (currently test/data/webui). |
95 FilePath test_data_directory_; | 95 FilePath test_data_directory_; |
96 | 96 |
97 // User added libraries | 97 // User added libraries |
98 std::vector<FilePath> user_libraries; | 98 std::vector<FilePath> user_libraries; |
99 }; | 99 }; |
100 | 100 |
101 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_BROWSERTEST_H_ | 101 #endif // CHROME_BROWSER_UI_WEBUI_WEB_UI_BROWSERTEST_H_ |
OLD | NEW |