| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 scoped_ptr<TextInputController> text_input_controller_; | 328 scoped_ptr<TextInputController> text_input_controller_; |
| 329 | 329 |
| 330 scoped_ptr<TestNavigationController> navigation_controller_; | 330 scoped_ptr<TestNavigationController> navigation_controller_; |
| 331 | 331 |
| 332 scoped_ptr<TestWebViewDelegate> delegate_; | 332 scoped_ptr<TestWebViewDelegate> delegate_; |
| 333 scoped_ptr<TestWebViewDelegate> popup_delegate_; | 333 scoped_ptr<TestWebViewDelegate> popup_delegate_; |
| 334 | 334 |
| 335 const TestParams* test_params_; | 335 const TestParams* test_params_; |
| 336 | 336 |
| 337 // True while a test is preparing to run | 337 // True while a test is preparing to run |
| 338 bool test_is_preparing_; | 338 static bool test_is_preparing_; |
| 339 | 339 |
| 340 // True while a test is running | 340 // True while a test is running |
| 341 bool test_is_pending_; | 341 static bool test_is_pending_; |
| 342 | 342 |
| 343 // True if driven from a nested message loop. | 343 // True if driven from a nested message loop. |
| 344 bool is_modal_; | 344 bool is_modal_; |
| 345 | 345 |
| 346 // The preferences for the test shell. | 346 // The preferences for the test shell. |
| 347 static WebPreferences* web_prefs_; | 347 static WebPreferences* web_prefs_; |
| 348 | 348 |
| 349 #if defined(OS_WIN) | 349 #if defined(OS_WIN) |
| 350 // Used by the watchdog to know when it's finished. | 350 // Used by the watchdog to know when it's finished. |
| 351 HANDLE finished_event_; | 351 HANDLE finished_event_; |
| 352 #endif | 352 #endif |
| 353 | 353 |
| 354 // Dump the stats table counters on exit. | 354 // Dump the stats table counters on exit. |
| 355 bool dump_stats_table_on_exit_; | 355 bool dump_stats_table_on_exit_; |
| 356 }; | 356 }; |
| 357 | 357 |
| 358 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 358 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| OLD | NEW |