blob: 2761a152bc7400c7764c7850827610f38f8d29b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_SHELL_COMMON_SHELL_TEST_CONFIGURATION_H_
#define CONTENT_SHELL_COMMON_SHELL_TEST_CONFIGURATION_H_
#include <string>
#include "base/files/file_path.h"
#include "googleurl/src/gurl.h"
#include "ui/gfx/size.h"
namespace content {
struct ShellTestConfiguration {
ShellTestConfiguration();
~ShellTestConfiguration();
// The current working directory.
base::FilePath current_working_directory;
// The temporary directory of the system.
base::FilePath temp_path;
// The URL of the current layout test.
GURL test_url;
// True if pixel tests are enabled.
bool enable_pixel_dumping;
// True if tests can open external URLs
bool allow_external_pages;
// The expected MD5 hash of the pixel results.
std::string expected_pixel_hash;
// The initial size of the test window.
gfx::Size initial_size;
};
} // namespace content
#endif // CONTENT_SHELL_COMMON_SHELL_TEST_CONFIGURATION_H_
|