| 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 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 26 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| 27 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 27 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| 28 | 28 |
| 29 #pragma once | 29 #pragma once |
| 30 | 30 |
| 31 #include <string> | 31 #include <string> |
| 32 #include <list> | 32 #include <list> |
| 33 | 33 |
| 34 #include "app/gfx/native_widget_types.h" |
| 34 #include "base/basictypes.h" | 35 #include "base/basictypes.h" |
| 35 #include "base/gfx/native_widget_types.h" | |
| 36 #if defined(OS_MACOSX) | 36 #if defined(OS_MACOSX) |
| 37 #include "base/lazy_instance.h" | 37 #include "base/lazy_instance.h" |
| 38 #endif | 38 #endif |
| 39 #include "base/ref_counted.h" | 39 #include "base/ref_counted.h" |
| 40 #include "webkit/tools/test_shell/event_sending_controller.h" | 40 #include "webkit/tools/test_shell/event_sending_controller.h" |
| 41 #include "webkit/tools/test_shell/layout_test_controller.h" | 41 #include "webkit/tools/test_shell/layout_test_controller.h" |
| 42 #include "webkit/tools/test_shell/text_input_controller.h" | 42 #include "webkit/tools/test_shell/text_input_controller.h" |
| 43 #include "webkit/tools/test_shell/test_webview_delegate.h" | 43 #include "webkit/tools/test_shell/test_webview_delegate.h" |
| 44 #include "webkit/tools/test_shell/webview_host.h" | 44 #include "webkit/tools/test_shell/webview_host.h" |
| 45 #include "webkit/tools/test_shell/webwidget_host.h" | 45 #include "webkit/tools/test_shell/webwidget_host.h" |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |