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

Unified Diff: components/test_runner/layout_dump_flags.h

Issue 1755123004: Remove dump_line_box_trees and debug_render_tree from LayoutDumpFlags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding const-ref enabled by the core changes. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: components/test_runner/layout_dump_flags.h
diff --git a/components/test_runner/layout_dump_flags.h b/components/test_runner/layout_dump_flags.h
index 188c1be32af38641895ec32b27a3c61d8ab7f01f..06855eeb38897eb3983a57d3941194998e0c51a7 100644
--- a/components/test_runner/layout_dump_flags.h
+++ b/components/test_runner/layout_dump_flags.h
@@ -13,17 +13,13 @@ struct LayoutDumpFlags {
bool dump_as_markup,
bool dump_child_frames_as_markup,
bool dump_child_frame_scroll_positions,
- bool is_printing,
- bool dump_line_box_trees,
- bool debug_render_tree)
+ bool is_printing)
: dump_as_text(dump_as_text),
dump_child_frames_as_text(dump_child_frames_as_text),
dump_as_markup(dump_as_text),
dump_child_frames_as_markup(dump_child_frames_as_markup),
dump_child_frame_scroll_positions(dump_child_frame_scroll_positions),
- is_printing(is_printing),
- dump_line_box_trees(dump_line_box_trees),
- debug_render_tree(debug_render_tree) {}
+ is_printing(is_printing) {}
// Default constructor needed for IPC.
//
@@ -64,10 +60,6 @@ struct LayoutDumpFlags {
// If true, layout is to target printed pages.
bool is_printing;
-
- // Extra flags for debugging layout tests.
- bool dump_line_box_trees;
- bool debug_render_tree;
};
} // namespace test_runner

Powered by Google App Engine
This is Rietveld 408576698