| 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 30 matching lines...) Expand all Loading... |
| 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" |
| 46 | 46 |
| 47 typedef std::list<gfx::NativeWindow> WindowList; | 47 typedef std::list<gfx::NativeWindow> WindowList; |
| 48 | 48 |
| 49 struct WebPreferences; | 49 struct WebPreferences; |
| 50 class AccessibilityController; | 50 class AccessibilityController; |
| 51 class FilePath; |
| 51 class TestNavigationEntry; | 52 class TestNavigationEntry; |
| 52 class TestNavigationController; | 53 class TestNavigationController; |
| 53 | 54 |
| 54 namespace base { | 55 namespace base { |
| 55 class StringPiece; | 56 class StringPiece; |
| 56 } | 57 } |
| 57 | 58 |
| 58 class TestShell { | 59 class TestShell { |
| 59 public: | 60 public: |
| 60 struct TestParams { | 61 struct TestParams { |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 #if defined(OS_WIN) | 357 #if defined(OS_WIN) |
| 357 // Used by the watchdog to know when it's finished. | 358 // Used by the watchdog to know when it's finished. |
| 358 HANDLE finished_event_; | 359 HANDLE finished_event_; |
| 359 #endif | 360 #endif |
| 360 | 361 |
| 361 // Dump the stats table counters on exit. | 362 // Dump the stats table counters on exit. |
| 362 bool dump_stats_table_on_exit_; | 363 bool dump_stats_table_on_exit_; |
| 363 }; | 364 }; |
| 364 | 365 |
| 365 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 366 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| OLD | NEW |