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 10 matching lines...) Expand all Loading... |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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 <list> |
31 #include <string> | 32 #include <string> |
32 #include <list> | |
33 #include <vector> | 33 #include <vector> |
34 | 34 |
35 #include "base/basictypes.h" | 35 #include "base/basictypes.h" |
36 #include "base/file_path.h" | 36 #include "base/file_path.h" |
37 #include "base/memory/scoped_temp_dir.h" | 37 #include "base/scoped_temp_dir.h" |
38 #if defined(OS_MACOSX) | 38 #if defined(OS_MACOSX) |
39 #include "base/lazy_instance.h" | 39 #include "base/lazy_instance.h" |
40 #endif | 40 #endif |
41 #include "base/memory/ref_counted.h" | 41 #include "base/memory/ref_counted.h" |
42 #include "base/memory/weak_ptr.h" | 42 #include "base/memory/weak_ptr.h" |
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h
" | 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h
" |
44 #include "ui/gfx/native_widget_types.h" | 44 #include "ui/gfx/native_widget_types.h" |
45 #include "webkit/tools/test_shell/layout_test_controller.h" | 45 #include "webkit/tools/test_shell/layout_test_controller.h" |
46 #include "webkit/tools/test_shell/webview_host.h" | 46 #include "webkit/tools/test_shell/webview_host.h" |
47 #include "webkit/tools/test_shell/webwidget_host.h" | 47 #include "webkit/tools/test_shell/webwidget_host.h" |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 #if defined(OS_WIN) | 441 #if defined(OS_WIN) |
442 // Used by the watchdog to know when it's finished. | 442 // Used by the watchdog to know when it's finished. |
443 HANDLE finished_event_; | 443 HANDLE finished_event_; |
444 #endif | 444 #endif |
445 | 445 |
446 // Dump the stats table counters on exit. | 446 // Dump the stats table counters on exit. |
447 bool dump_stats_table_on_exit_; | 447 bool dump_stats_table_on_exit_; |
448 }; | 448 }; |
449 | 449 |
450 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 450 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
OLD | NEW |