| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #include "content/shell/common/test_runner/test_preferences.h" | 5 #include "components/test_runner/test_preferences.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 using blink::WebSettings; | 9 using blink::WebSettings; |
| 10 using blink::WebString; | 10 using blink::WebString; |
| 11 | 11 |
| 12 namespace content { | 12 namespace content { |
| 13 | 13 |
| 14 TestPreferences::TestPreferences() { Reset(); } | 14 TestPreferences::TestPreferences() { Reset(); } |
| 15 | 15 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 hyperlink_auditing_enabled = false; | 49 hyperlink_auditing_enabled = false; |
| 50 should_respect_image_orientation = false; | 50 should_respect_image_orientation = false; |
| 51 asynchronous_spell_checking_enabled = false; | 51 asynchronous_spell_checking_enabled = false; |
| 52 web_security_enabled = true; | 52 web_security_enabled = true; |
| 53 disable_reading_from_canvas = false; | 53 disable_reading_from_canvas = false; |
| 54 strict_mixed_content_checking = false; | 54 strict_mixed_content_checking = false; |
| 55 strict_powerful_feature_restrictions = false; | 55 strict_powerful_feature_restrictions = false; |
| 56 } | 56 } |
| 57 | 57 |
| 58 } // namespace content | 58 } // namespace content |
| OLD | NEW |