OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 5 #ifndef CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 6 #define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
7 | 7 |
8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "content/public/renderer/render_view_observer.h" | 10 #include "content/public/renderer/render_view_observer.h" |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 ::WebTestRunner::WebPreferences prefs_; | 117 ::WebTestRunner::WebPreferences prefs_; |
118 | 118 |
119 bool dump_editing_callbacks_; | 119 bool dump_editing_callbacks_; |
120 bool dump_frame_load_callbacks_; | 120 bool dump_frame_load_callbacks_; |
121 bool dump_user_gesture_in_frame_load_callbacks_; | 121 bool dump_user_gesture_in_frame_load_callbacks_; |
122 bool stop_provisional_frame_loads_; | 122 bool stop_provisional_frame_loads_; |
123 bool dump_title_changes_; | 123 bool dump_title_changes_; |
124 | 124 |
125 bool test_is_running_; | 125 bool test_is_running_; |
126 bool wait_until_done_; | 126 bool wait_until_done_; |
| 127 bool load_finished_; |
127 | 128 |
128 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); | 129 DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner); |
129 }; | 130 }; |
130 | 131 |
131 } // namespace content | 132 } // namespace content |
132 | 133 |
133 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ | 134 #endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_ |
OLD | NEW |