Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: content/shell/shell_test_configuration.h

Issue 14767019: [content shell] move code common to several processes to a common dir (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/shell/shell_switches.cc ('k') | content/shell/shell_test_configuration.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_SHELL_SHELL_TEST_CONFIGURATION_H_
6 #define CONTENT_SHELL_SHELL_TEST_CONFIGURATION_H_
7
8 #include <string>
9
10 #include "base/files/file_path.h"
11 #include "googleurl/src/gurl.h"
12
13 namespace content {
14
15 struct ShellTestConfiguration {
16 ShellTestConfiguration();
17 ~ShellTestConfiguration();
18
19 // The current working directory.
20 base::FilePath current_working_directory;
21
22 // The temporary directory of the system.
23 base::FilePath temp_path;
24
25 // The URL of the current layout test.
26 GURL test_url;
27
28 // True if pixel tests are enabled.
29 bool enable_pixel_dumping;
30
31 // The layout test timeout in milliseconds.
32 int layout_test_timeout;
33
34 // True if tests can open external URLs
35 bool allow_external_pages;
36
37 // The expected MD5 hash of the pixel results.
38 std::string expected_pixel_hash;
39 };
40
41 } // namespace content
42
43 #endif // CONTENT_SHELL_SHELL_TEST_CONFIGURATION_H_
OLDNEW
« no previous file with comments | « content/shell/shell_switches.cc ('k') | content/shell/shell_test_configuration.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698