| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_UI_UI_LAYOUT_TEST_H_ | 5 #ifndef CHROME_TEST_UI_UI_LAYOUT_TEST_H_ |
| 6 #define CHROME_TEST_UI_UI_LAYOUT_TEST_H_ | 6 #define CHROME_TEST_UI_UI_LAYOUT_TEST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "chrome/test/ui/ui_test.h" | 10 #include "chrome/test/ui/ui_test.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 FilePath test_case_dir_; | 33 FilePath test_case_dir_; |
| 34 FilePath new_http_root_dir_; | 34 FilePath new_http_root_dir_; |
| 35 FilePath new_layout_test_dir_; | 35 FilePath new_layout_test_dir_; |
| 36 FilePath rebase_result_dir_; | 36 FilePath rebase_result_dir_; |
| 37 FilePath rebase_result_chromium_dir_; | 37 FilePath rebase_result_chromium_dir_; |
| 38 FilePath rebase_result_win_dir_; | 38 FilePath rebase_result_win_dir_; |
| 39 std::string layout_test_controller_; | 39 std::string layout_test_controller_; |
| 40 | 40 |
| 41 static const int kNoHttpPort = -1; | 41 static const int kNoHttpPort = -1; |
| 42 static const int kHttpPort = 8080; | 42 static const int kHttpPort = 8080; |
| 43 static const int kWebSocketPort = 8880; | |
| 44 }; | 43 }; |
| 45 | 44 |
| 46 #endif // CHROME_TEST_UI_UI_LAYOUT_TEST_H_ | 45 #endif // CHROME_TEST_UI_UI_LAYOUT_TEST_H_ |
| OLD | NEW |