| 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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 573 // If true, output a descriptive line each time WebViewClient::createView |
| 574 // is invoked. | 574 // is invoked. |
| 575 bool dump_create_view_; | 575 bool dump_create_view_; |
| 576 | 576 |
| 577 // If true, new windows can be opened via javascript or by plugins. By | |
| 578 // default, set to false and can be toggled to true using | |
| 579 // setCanOpenWindows(). | |
| 580 bool can_open_windows_; | |
| 581 | |
| 582 // If true, the test_shell will dump all changes to window.status. | 577 // If true, the test_shell will dump all changes to window.status. |
| 583 bool dump_window_status_changes_; | 578 bool dump_window_status_changes_; |
| 584 | 579 |
| 585 // If true, the test_shell will output descriptive test for spellcheck | 580 // If true, the test_shell will output descriptive test for spellcheck |
| 586 // execution. | 581 // execution. |
| 587 bool dump_spell_check_callbacks_; | 582 bool dump_spell_check_callbacks_; |
| 588 | 583 |
| 589 // If true, the test_shell will produce a dump of the back forward list as | 584 // If true, the test_shell will produce a dump of the back forward list as |
| 590 // well. | 585 // well. |
| 591 bool dump_back_forward_list_; | 586 bool dump_back_forward_list_; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 bool is_web_platform_tests_mode_; | 639 bool is_web_platform_tests_mode_; |
| 645 | 640 |
| 646 base::WeakPtrFactory<TestRunner> weak_factory_; | 641 base::WeakPtrFactory<TestRunner> weak_factory_; |
| 647 | 642 |
| 648 DISALLOW_COPY_AND_ASSIGN(TestRunner); | 643 DISALLOW_COPY_AND_ASSIGN(TestRunner); |
| 649 }; | 644 }; |
| 650 | 645 |
| 651 } // namespace test_runner | 646 } // namespace test_runner |
| 652 | 647 |
| 653 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ | 648 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ |
| OLD | NEW |