| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_WEBVIEW_HOST_H_ | 5 #ifndef WEBKIT_TOOLS_TEST_SHELL_WEBVIEW_HOST_H_ |
| 6 #define WEBKIT_TOOLS_TEST_SHELL_WEBVIEW_HOST_H_ | 6 #define WEBKIT_TOOLS_TEST_SHELL_WEBVIEW_HOST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "app/gfx/native_widget_types.h" |
| 10 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 11 #include "base/gfx/native_widget_types.h" | |
| 12 #include "base/gfx/rect.h" | 12 #include "base/gfx/rect.h" |
| 13 #include "webkit/tools/test_shell/webwidget_host.h" | 13 #include "webkit/tools/test_shell/webwidget_host.h" |
| 14 #if defined(OS_LINUX) | 14 #if defined(OS_LINUX) |
| 15 #include "webkit/glue/plugins/gtk_plugin_container_manager.h" | 15 #include "webkit/glue/plugins/gtk_plugin_container_manager.h" |
| 16 #endif | 16 #endif |
| 17 | 17 |
| 18 struct WebPreferences; | 18 struct WebPreferences; |
| 19 class WebView; | 19 class WebView; |
| 20 class TestWebViewDelegate; | 20 class TestWebViewDelegate; |
| 21 | 21 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 50 } | 50 } |
| 51 #endif | 51 #endif |
| 52 | 52 |
| 53 #if defined(OS_LINUX) | 53 #if defined(OS_LINUX) |
| 54 // Helper class that creates and moves plugin containers. | 54 // Helper class that creates and moves plugin containers. |
| 55 GtkPluginContainerManager plugin_container_manager_; | 55 GtkPluginContainerManager plugin_container_manager_; |
| 56 #endif | 56 #endif |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 #endif // WEBKIT_TOOLS_TEST_SHELL_WEBVIEW_HOST_H_ | 59 #endif // WEBKIT_TOOLS_TEST_SHELL_WEBVIEW_HOST_H_ |
| OLD | NEW |