OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <deque> | 9 #include <deque> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "app/surface/transport_dib.h" | 13 #include "app/surface/transport_dib.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/process_util.h" | 15 #include "base/process_util.h" |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
17 #include "base/string16.h" | 17 #include "base/string16.h" |
18 #include "base/timer.h" | 18 #include "base/timer.h" |
19 #include "chrome/common/edit_command.h" | 19 #include "chrome/common/edit_command.h" |
20 #include "chrome/common/native_web_keyboard_event.h" | 20 #include "chrome/common/native_web_keyboard_event.h" |
21 #include "chrome/common/property_bag.h" | 21 #include "chrome/common/property_bag.h" |
22 #include "gfx/native_widget_types.h" | |
23 #include "gfx/rect.h" | |
24 #include "gfx/size.h" | |
25 #include "ipc/ipc_channel.h" | 22 #include "ipc/ipc_channel.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" |
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputType.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputType.h" |
| 26 #include "ui/gfx/native_widget_types.h" |
| 27 #include "ui/gfx/rect.h" |
| 28 #include "ui/gfx/size.h" |
29 | 29 |
30 namespace gfx { | 30 namespace gfx { |
31 class Rect; | 31 class Rect; |
32 } | 32 } |
33 | 33 |
34 namespace WebKit { | 34 namespace WebKit { |
35 class WebInputEvent; | 35 class WebInputEvent; |
36 class WebMouseEvent; | 36 class WebMouseEvent; |
37 struct WebCompositionUnderline; | 37 struct WebCompositionUnderline; |
38 struct WebScreenInfo; | 38 struct WebScreenInfo; |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 | 668 |
669 std::vector<gfx::PluginWindowHandle> deferred_plugin_handles_; | 669 std::vector<gfx::PluginWindowHandle> deferred_plugin_handles_; |
670 | 670 |
671 // The last scroll offset of the render widget. | 671 // The last scroll offset of the render widget. |
672 gfx::Size last_scroll_offset_; | 672 gfx::Size last_scroll_offset_; |
673 | 673 |
674 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); | 674 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHost); |
675 }; | 675 }; |
676 | 676 |
677 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ | 677 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_H_ |
OLD | NEW |