OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gdk/gdk.h> | 9 #include <gdk/gdk.h> |
10 | 10 |
| 11 #include <string> |
11 #include <vector> | 12 #include <vector> |
12 #include <string> | |
13 | 13 |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "chrome/browser/gtk/owned_widget_gtk.h" | |
17 #include "chrome/browser/renderer_host/render_widget_host_view.h" | 16 #include "chrome/browser/renderer_host/render_widget_host_view.h" |
| 17 #include "chrome/browser/ui/gtk/owned_widget_gtk.h" |
18 #include "gfx/native_widget_types.h" | 18 #include "gfx/native_widget_types.h" |
19 #include "gfx/rect.h" | 19 #include "gfx/rect.h" |
20 #include "ui/base/animation/animation_delegate.h" | 20 #include "ui/base/animation/animation_delegate.h" |
21 #include "ui/base/animation/slide_animation.h" | 21 #include "ui/base/animation/slide_animation.h" |
22 #include "webkit/glue/webcursor.h" | 22 #include "webkit/glue/webcursor.h" |
23 #include "webkit/plugins/npapi/gtk_plugin_container_manager.h" | 23 #include "webkit/plugins/npapi/gtk_plugin_container_manager.h" |
24 | 24 |
25 class RenderWidgetHost; | 25 class RenderWidgetHost; |
26 class GtkIMContextWrapper; | 26 class GtkIMContextWrapper; |
27 class GtkKeyBindingsHandler; | 27 class GtkKeyBindingsHandler; |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 // indicate the top edge, positive the bottom. | 224 // indicate the top edge, positive the bottom. |
225 int dragged_at_vertical_edge_; | 225 int dragged_at_vertical_edge_; |
226 | 226 |
227 #if defined(OS_CHROMEOS) | 227 #if defined(OS_CHROMEOS) |
228 // Custimized tooltip window. | 228 // Custimized tooltip window. |
229 scoped_ptr<views::TooltipWindowGtk> tooltip_window_; | 229 scoped_ptr<views::TooltipWindowGtk> tooltip_window_; |
230 #endif // defined(OS_CHROMEOS) | 230 #endif // defined(OS_CHROMEOS) |
231 }; | 231 }; |
232 | 232 |
233 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 233 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
OLD | NEW |