| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "components/test_runner/layout_test_runtime_flags.h" | 5 #include "content/shell/test_runner/layout_test_runtime_flags.h" |
| 6 | 6 |
| 7 namespace test_runner { | 7 namespace test_runner { |
| 8 | 8 |
| 9 LayoutTestRuntimeFlags::LayoutTestRuntimeFlags() { | 9 LayoutTestRuntimeFlags::LayoutTestRuntimeFlags() { |
| 10 Reset(); | 10 Reset(); |
| 11 } | 11 } |
| 12 | 12 |
| 13 void LayoutTestRuntimeFlags::Reset() { | 13 void LayoutTestRuntimeFlags::Reset() { |
| 14 set_generate_pixel_results(true); | 14 set_generate_pixel_results(true); |
| 15 | 15 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 set_dump_javascript_dialogs(true); | 66 set_dump_javascript_dialogs(true); |
| 67 | 67 |
| 68 set_has_custom_text_output(false); | 68 set_has_custom_text_output(false); |
| 69 set_custom_text_output(""); | 69 set_custom_text_output(""); |
| 70 | 70 |
| 71 // No need to report the initial state - only the future delta is important. | 71 // No need to report the initial state - only the future delta is important. |
| 72 tracked_dictionary().ResetChangeTracking(); | 72 tracked_dictionary().ResetChangeTracking(); |
| 73 } | 73 } |
| 74 | 74 |
| 75 } // namespace test_runner | 75 } // namespace test_runner |
| OLD | NEW |