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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
7 | 7 |
8 #include <gdk/gdk.h> | 8 #include <gdk/gdk.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
15 #include "content/browser/accessibility/browser_accessibility_manager.h" | 15 #include "content/browser/accessibility/browser_accessibility_manager.h" |
16 #include "content/browser/renderer_host/gtk_plugin_container_manager.h" | 16 #include "content/browser/renderer_host/gtk_plugin_container_manager.h" |
17 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 17 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
18 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
| 19 #include "content/common/cursors/webcursor.h" |
19 #include "ipc/ipc_sender.h" | 20 #include "ipc/ipc_sender.h" |
20 #include "ui/base/gtk/gtk_signal.h" | 21 #include "ui/base/gtk/gtk_signal.h" |
21 #include "ui/base/gtk/gtk_signal_registrar.h" | 22 #include "ui/base/gtk/gtk_signal_registrar.h" |
22 #include "ui/base/gtk/owned_widget_gtk.h" | 23 #include "ui/base/gtk/owned_widget_gtk.h" |
23 #include "ui/base/x/active_window_watcher_x_observer.h" | 24 #include "ui/base/x/active_window_watcher_x_observer.h" |
24 #include "ui/gfx/native_widget_types.h" | 25 #include "ui/gfx/native_widget_types.h" |
25 #include "ui/gfx/point.h" | 26 #include "ui/gfx/point.h" |
26 #include "ui/gfx/rect.h" | 27 #include "ui/gfx/rect.h" |
27 #include "webkit/common/cursors/webcursor.h" | |
28 | 28 |
29 typedef struct _GtkClipboard GtkClipboard; | 29 typedef struct _GtkClipboard GtkClipboard; |
30 typedef struct _GtkSelectionData GtkSelectionData; | 30 typedef struct _GtkSelectionData GtkSelectionData; |
31 | 31 |
32 namespace content { | 32 namespace content { |
33 class GtkIMContextWrapper; | 33 class GtkIMContextWrapper; |
34 class GtkKeyBindingsHandler; | 34 class GtkKeyBindingsHandler; |
35 class RenderWidgetHost; | 35 class RenderWidgetHost; |
36 class RenderWidgetHostImpl; | 36 class RenderWidgetHostImpl; |
37 struct NativeWebKeyboardEvent; | 37 struct NativeWebKeyboardEvent; |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 332 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
333 | 333 |
334 ui::GtkSignalRegistrar signals_; | 334 ui::GtkSignalRegistrar signals_; |
335 | 335 |
336 std::vector<ui::LatencyInfo> software_latency_info_; | 336 std::vector<ui::LatencyInfo> software_latency_info_; |
337 }; | 337 }; |
338 | 338 |
339 } // namespace content | 339 } // namespace content |
340 | 340 |
341 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 341 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
OLD | NEW |