| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <map> | |
| 12 #include <vector> | 11 #include <vector> |
| 13 #include <string> | 12 #include <string> |
| 14 | 13 |
| 15 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
| 16 #include "base/time.h" | 15 #include "base/time.h" |
| 17 #include "chrome/browser/gtk/owned_widget_gtk.h" | 16 #include "chrome/browser/gtk/owned_widget_gtk.h" |
| 18 #include "chrome/browser/renderer_host/render_widget_host_view.h" | 17 #include "chrome/browser/renderer_host/render_widget_host_view.h" |
| 19 #include "gfx/native_widget_types.h" | 18 #include "gfx/native_widget_types.h" |
| 20 #include "webkit/glue/plugins/gtk_plugin_container_manager.h" | 19 #include "webkit/glue/plugins/gtk_plugin_container_manager.h" |
| 21 #include "webkit/glue/webcursor.h" | 20 #include "webkit/glue/webcursor.h" |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 // variable because resizing in GTK+ is async. | 193 // variable because resizing in GTK+ is async. |
| 195 gfx::Size requested_size_; | 194 gfx::Size requested_size_; |
| 196 | 195 |
| 197 #if defined(OS_CHROMEOS) | 196 #if defined(OS_CHROMEOS) |
| 198 // Custimized tooltip window. | 197 // Custimized tooltip window. |
| 199 scoped_ptr<views::TooltipWindowGtk> tooltip_window_; | 198 scoped_ptr<views::TooltipWindowGtk> tooltip_window_; |
| 200 #endif // defined(OS_CHROMEOS) | 199 #endif // defined(OS_CHROMEOS) |
| 201 }; | 200 }; |
| 202 | 201 |
| 203 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 202 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
| OLD | NEW |