Revert of Revert of Update V8 to version 4.5.61. (patchset #1 id:1 of https://coderev...
[chromium-blink-merge.git] / components / test_runner / test_preferences.h
blob9512b9c35d3d3a49fb7f4cdfc26ae46870915be5
1 // Copyright 2014 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.
5 #ifndef COMPONENTS_TEST_RUNNER_TEST_PREFERENCES_H_
6 #define COMPONENTS_TEST_RUNNER_TEST_PREFERENCES_H_
8 #include "components/test_runner/test_runner_export.h"
9 #include "third_party/WebKit/public/platform/WebString.h"
10 #include "third_party/WebKit/public/platform/WebURL.h"
11 #include "third_party/WebKit/public/web/WebSettings.h"
13 namespace blink {
14 class WebView;
17 namespace test_runner {
19 struct TEST_RUNNER_EXPORT TestPreferences {
20 int default_font_size;
21 int minimum_font_size;
22 bool dom_paste_allowed;
23 bool xss_auditor_enabled;
24 bool allow_display_of_insecure_content;
25 bool allow_file_access_from_file_urls;
26 bool allow_running_of_insecure_content;
27 bool author_and_user_styles_enabled;
28 blink::WebString default_text_encoding_name;
29 bool experimental_webgl_enabled;
30 bool experimental_css_regions_enabled;
31 bool experimental_css_grid_layout_enabled;
32 bool java_enabled;
33 bool java_script_can_access_clipboard;
34 bool java_script_can_open_windows_automatically;
35 bool supports_multiple_windows;
36 bool java_script_enabled;
37 bool loads_images_automatically;
38 bool offline_web_application_cache_enabled;
39 bool plugins_enabled;
40 bool allow_universal_access_from_file_urls;
41 blink::WebSettings::EditingBehavior editing_behavior;
42 bool tabs_to_links;
43 bool hyperlink_auditing_enabled;
44 bool caret_browsing_enabled;
45 bool should_respect_image_orientation;
46 bool asynchronous_spell_checking_enabled;
47 bool web_security_enabled;
48 bool disable_reading_from_canvas;
49 bool strict_mixed_content_checking;
50 bool strict_powerful_feature_restrictions;
52 TestPreferences();
53 void Reset();
58 #endif // COMPONENTS_TEST_RUNNER_TEST_PREFERENCES_H_