| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| 7 | 7 |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
| 16 #include "base/scoped_temp_dir.h" | 16 #include "base/files/scoped_temp_dir.h" |
| 17 #include "base/string_piece.h" | |
| 18 #if defined(OS_MACOSX) | |
| 19 #include "base/lazy_instance.h" | 17 #include "base/lazy_instance.h" |
| 20 #endif | |
| 21 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 22 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 20 #include "base/string_piece.h" |
| 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h
" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h
" |
| 24 #include "ui/gfx/native_widget_types.h" | 22 #include "ui/gfx/native_widget_types.h" |
| 25 #include "webkit/tools/test_shell/webview_host.h" | 23 #include "webkit/tools/test_shell/webview_host.h" |
| 26 #include "webkit/tools/test_shell/webwidget_host.h" | 24 #include "webkit/tools/test_shell/webwidget_host.h" |
| 27 | 25 |
| 28 typedef std::list<gfx::NativeWindow> WindowList; | 26 typedef std::list<gfx::NativeWindow> WindowList; |
| 29 | 27 |
| 30 #if defined(OS_WIN) | 28 #if defined(OS_WIN) |
| 31 namespace ui { | 29 namespace ui { |
| 32 class ScopedOleInitializer; | 30 class ScopedOleInitializer; |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 #if defined(OS_WIN) | 402 #if defined(OS_WIN) |
| 405 // Used by the watchdog to know when it's finished. | 403 // Used by the watchdog to know when it's finished. |
| 406 HANDLE finished_event_; | 404 HANDLE finished_event_; |
| 407 #endif | 405 #endif |
| 408 | 406 |
| 409 // Dump the stats table counters on exit. | 407 // Dump the stats table counters on exit. |
| 410 bool dump_stats_table_on_exit_; | 408 bool dump_stats_table_on_exit_; |
| 411 }; | 409 }; |
| 412 | 410 |
| 413 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 411 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| OLD | NEW |