Chromium Code Reviews| 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 #ifndef COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ | 6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <deque> | 10 #include <deque> |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 563 | 563 |
| 564 // Bound variable counting the number of top URLs visited. | 564 // Bound variable counting the number of top URLs visited. |
| 565 int web_history_item_count_; | 565 int web_history_item_count_; |
| 566 | 566 |
| 567 // Flags controlling what content gets dumped as a layout text result. | 567 // Flags controlling what content gets dumped as a layout text result. |
| 568 LayoutTestRuntimeFlags layout_test_runtime_flags_; | 568 LayoutTestRuntimeFlags layout_test_runtime_flags_; |
| 569 | 569 |
| 570 // If true, the test_shell will output a base64 encoded WAVE file. | 570 // If true, the test_shell will output a base64 encoded WAVE file. |
| 571 bool dump_as_audio_; | 571 bool dump_as_audio_; |
| 572 | 572 |
| 573 // If true, output a descriptive line each time WebViewClient::createView | |
| 574 // is invoked. | |
| 575 bool dump_create_view_; | |
| 576 | |
| 577 // If true, the test_shell will dump all changes to window.status. | |
| 578 bool dump_window_status_changes_; | |
| 579 | |
| 580 // If true, the test_shell will output descriptive test for spellcheck | |
| 581 // execution. | |
| 582 bool dump_spell_check_callbacks_; | |
|
Łukasz Anforowicz
2016/06/06 23:48:09
The 3 flags we are moving to LayoutTestRuntimeFlag
| |
| 583 | |
| 584 // If true, the test_shell will produce a dump of the back forward list as | 573 // If true, the test_shell will produce a dump of the back forward list as |
| 585 // well. | 574 // well. |
| 586 bool dump_back_forward_list_; | 575 bool dump_back_forward_list_; |
| 587 | 576 |
| 588 // If true, pixel dump will be produced as a series of 1px-tall, view-wide | 577 // If true, pixel dump will be produced as a series of 1px-tall, view-wide |
| 589 // individual paints over the height of the view. | 578 // individual paints over the height of the view. |
| 590 bool test_repaint_; | 579 bool test_repaint_; |
| 591 | 580 |
| 592 // If true and test_repaint_ is true as well, pixel dump will be produced as | 581 // If true and test_repaint_ is true as well, pixel dump will be produced as |
| 593 // a series of 1px-wide, view-tall paints across the width of the view. | 582 // a series of 1px-wide, view-tall paints across the width of the view. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 639 bool is_web_platform_tests_mode_; | 628 bool is_web_platform_tests_mode_; |
| 640 | 629 |
| 641 base::WeakPtrFactory<TestRunner> weak_factory_; | 630 base::WeakPtrFactory<TestRunner> weak_factory_; |
| 642 | 631 |
| 643 DISALLOW_COPY_AND_ASSIGN(TestRunner); | 632 DISALLOW_COPY_AND_ASSIGN(TestRunner); |
| 644 }; | 633 }; |
| 645 | 634 |
| 646 } // namespace test_runner | 635 } // namespace test_runner |
| 647 | 636 |
| 648 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ | 637 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ |
| OLD | NEW |