OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_SHELL_SHELL_TEST_CONFIGURATION_H_ | 5 #ifndef CONTENT_SHELL_COMMON_SHELL_TEST_CONFIGURATION_H_ |
6 #define CONTENT_SHELL_SHELL_TEST_CONFIGURATION_H_ | 6 #define CONTENT_SHELL_COMMON_SHELL_TEST_CONFIGURATION_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 struct ShellTestConfiguration { | 15 struct ShellTestConfiguration { |
16 ShellTestConfiguration(); | 16 ShellTestConfiguration(); |
(...skipping 16 matching lines...) Expand all Loading... |
33 | 33 |
34 // True if tests can open external URLs | 34 // True if tests can open external URLs |
35 bool allow_external_pages; | 35 bool allow_external_pages; |
36 | 36 |
37 // The expected MD5 hash of the pixel results. | 37 // The expected MD5 hash of the pixel results. |
38 std::string expected_pixel_hash; | 38 std::string expected_pixel_hash; |
39 }; | 39 }; |
40 | 40 |
41 } // namespace content | 41 } // namespace content |
42 | 42 |
43 #endif // CONTENT_SHELL_SHELL_TEST_CONFIGURATION_H_ | 43 #endif // CONTENT_SHELL_COMMON_SHELL_TEST_CONFIGURATION_H_ |
OLD | NEW |