blob: 4cb9626ee5676afe66827fa6ca40345373b771a9 (
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
|
// Copyright (c) 2012 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_WEBKIT_TEST_HELPERS_H_
#define CONTENT_SHELL_WEBKIT_TEST_HELPERS_H_
namespace WebTestRunner {
struct WebPreferences;
}
namespace webkit_glue {
struct WebPreferences;
}
namespace content {
// The TestRunner library keeps its settings in a WebTestRunner::WebPreferenes
// object. The content_shell, however, uses webkit_glue::WebPreferences. This
// method exports the settings from the WebTestRunner library which are relevant
// for layout tests.
void ExportLayoutTestSpecificPreferences(
const WebTestRunner::WebPreferences& from, webkit_glue::WebPreferences* to);
// Applies settings that differ between layout tests and regular mode.
void ApplyLayoutTestDefaultPreferences(webkit_glue::WebPreferences* prefs);
} // namespace content
#endif // CONTENT_SHELL_WEBKIT_TEST_HELPERS_H_
|