| 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/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/files/scoped_temp_dir.h" | 16 #include "base/files/scoped_temp_dir.h" |
| 17 #include "base/lazy_instance.h" | 17 #include "base/lazy_instance.h" |
| 18 #include "base/memory/ref_counted.h" | 18 #include "base/memory/ref_counted.h" |
| 19 #include "base/memory/weak_ptr.h" | 19 #include "base/memory/weak_ptr.h" |
| 20 #include "base/string_piece.h" | 20 #include "base/strings/string_piece.h" |
| 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h
" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h
" |
| 22 #include "ui/gfx/native_widget_types.h" | 22 #include "ui/gfx/native_widget_types.h" |
| 23 #include "webkit/tools/test_shell/webview_host.h" | 23 #include "webkit/tools/test_shell/webview_host.h" |
| 24 #include "webkit/tools/test_shell/webwidget_host.h" | 24 #include "webkit/tools/test_shell/webwidget_host.h" |
| 25 | 25 |
| 26 typedef std::list<gfx::NativeWindow> WindowList; | 26 typedef std::list<gfx::NativeWindow> WindowList; |
| 27 | 27 |
| 28 #if defined(OS_WIN) | 28 #if defined(OS_WIN) |
| 29 namespace ui { | 29 namespace ui { |
| 30 class ScopedOleInitializer; | 30 class ScopedOleInitializer; |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 #if defined(OS_WIN) | 400 #if defined(OS_WIN) |
| 401 // Used by the watchdog to know when it's finished. | 401 // Used by the watchdog to know when it's finished. |
| 402 HANDLE finished_event_; | 402 HANDLE finished_event_; |
| 403 #endif | 403 #endif |
| 404 | 404 |
| 405 // Dump the stats table counters on exit. | 405 // Dump the stats table counters on exit. |
| 406 bool dump_stats_table_on_exit_; | 406 bool dump_stats_table_on_exit_; |
| 407 }; | 407 }; |
| 408 | 408 |
| 409 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ | 409 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_SHELL_H_ |
| OLD | NEW |