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 22 matching lines...) Expand all Loading... |
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/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/ref_counted.h" | 41 #include "base/ref_counted.h" |
42 #include "base/weak_ptr.h" | 42 #include "base/weak_ptr.h" |
43 #include "gfx/native_widget_types.h" | |
44 #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" |
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" |
48 | 48 |
49 typedef std::list<gfx::NativeWindow> WindowList; | 49 typedef std::list<gfx::NativeWindow> WindowList; |
50 | 50 |
51 struct WebPreferences; | 51 struct WebPreferences; |
52 class GURL; | 52 class GURL; |
53 class TestNavigationEntry; | 53 class TestNavigationEntry; |
54 class TestNavigationController; | 54 class TestNavigationController; |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 #if defined(OS_WIN) | 487 #if defined(OS_WIN) |
488 // Used by the watchdog to know when it's finished. | 488 // Used by the watchdog to know when it's finished. |
489 HANDLE finished_event_; | 489 HANDLE finished_event_; |
490 #endif | 490 #endif |
491 | 491 |
492 // Dump the stats table counters on exit. | 492 // Dump the stats table counters on exit. |
493 bool dump_stats_table_on_exit_; | 493 bool dump_stats_table_on_exit_; |
494 }; | 494 }; |
495 | 495 |
496 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 496 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
OLD | NEW |