Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(840)

Side by Side Diff: content/shell/test_runner/layout_test_runtime_flags.cc

Issue 2707183003: Move //components/test_runner back into //content/shell (Closed)
Patch Set: Trim DEPS Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698