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_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ |
6 #define WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ | 6 #define WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include <list> | 11 #include <list> |
12 | 12 |
| 13 #include "app/gfx/native_widget_types.h" |
13 #include "base/file_path.h" | 14 #include "base/file_path.h" |
14 #include "base/gfx/native_widget_types.h" | |
15 #include "base/gfx/rect.h" | 15 #include "base/gfx/rect.h" |
16 #include "base/ref_counted.h" | 16 #include "base/ref_counted.h" |
17 #include "base/task.h" | 17 #include "base/task.h" |
18 #include "third_party/npapi/bindings/npapi.h" | 18 #include "third_party/npapi/bindings/npapi.h" |
19 #include "webkit/glue/webcursor.h" | 19 #include "webkit/glue/webcursor.h" |
20 #include "webkit/glue/webplugin_delegate.h" | 20 #include "webkit/glue/webplugin_delegate.h" |
21 | 21 |
22 #if defined(USE_X11) | 22 #if defined(USE_X11) |
23 typedef struct _GdkDrawable GdkPixmap; | 23 typedef struct _GdkDrawable GdkPixmap; |
24 #endif | 24 #endif |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 int last_mouse_y_; | 330 int last_mouse_y_; |
331 #endif | 331 #endif |
332 | 332 |
333 // Holds the current cursor set by the windowless plugin. | 333 // Holds the current cursor set by the windowless plugin. |
334 WebCursor current_windowless_cursor_; | 334 WebCursor current_windowless_cursor_; |
335 | 335 |
336 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); | 336 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); |
337 }; | 337 }; |
338 | 338 |
339 #endif // #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ | 339 #endif // #ifndef WEBKIT_GLUE_PLUGIN_WEBPLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |