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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5253e155fe5ab1ac76847331def50bc707f1ea8e |
--- /dev/null |
+++ b/components/test_runner/layout_dump_flags.h |
@@ -0,0 +1,27 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef COMPONENTS_TEST_RUNNER_LAYOUT_DUMP_FLAGS_H_ |
+#define COMPONENTS_TEST_RUNNER_LAYOUT_DUMP_FLAGS_H_ |
+ |
+namespace test_runner { |
+ |
+enum class LayoutDumpMode { |
+ DUMP_AS_TEXT, |
+ DUMP_AS_MARKUP, |
+ DUMP_SCROLL_POSITIONS |
+}; |
+ |
+struct LayoutDumpFlags { |
+ LayoutDumpMode main_dump_mode; |
+ |
+ bool dump_as_printed; |
+ bool dump_child_frames; |
+ bool dump_line_box_trees; |
+ bool debug_render_tree; |
+}; |
+ |
+} // namespace test_runner |
+ |
+#endif // COMPONENTS_TEST_RUNNER_LAYOUT_DUMP_FLAGS_H_ |