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_WIN_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
11 #include <atlmisc.h> | 11 #include <atlmisc.h> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/scoped_vector.h" | 16 #include "base/memory/scoped_vector.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
19 #include "base/win/scoped_comptr.h" | 19 #include "base/win/scoped_comptr.h" |
20 #include "content/browser/accessibility/browser_accessibility_manager.h" | 20 #include "content/browser/accessibility/browser_accessibility_manager.h" |
21 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 21 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
22 #include "content/common/content_export.h" | 22 #include "content/common/content_export.h" |
23 #include "content/public/browser/notification_observer.h" | 23 #include "content/public/browser/notification_observer.h" |
24 #include "content/public/browser/notification_registrar.h" | 24 #include "content/public/browser/notification_registrar.h" |
25 #include "ui/base/gestures/gesture_recognizer.h" | 25 #include "ui/base/gestures/gesture_recognizer.h" |
26 #include "ui/base/gestures/gesture_types.h" | 26 #include "ui/base/gestures/gesture_types.h" |
27 #include "ui/base/ime/text_input_client.h" | 27 #include "ui/base/ime/text_input_client.h" |
28 #include "ui/base/ime/win/imm32_manager.h" | |
29 #include "ui/base/ime/win/tsf_bridge.h" | 28 #include "ui/base/ime/win/tsf_bridge.h" |
30 #include "ui/base/win/extra_sdk_defines.h" | 29 #include "ui/base/win/extra_sdk_defines.h" |
31 #include "ui/gfx/native_widget_types.h" | 30 #include "ui/gfx/native_widget_types.h" |
32 #include "ui/gfx/point.h" | 31 #include "ui/gfx/point.h" |
33 #include "ui/surface/accelerated_surface_win.h" | 32 #include "ui/surface/accelerated_surface_win.h" |
34 #include "webkit/common/cursors/webcursor.h" | 33 #include "webkit/common/cursors/webcursor.h" |
35 | 34 |
36 class SkRegion; | 35 class SkRegion; |
37 | 36 |
38 namespace gfx { | 37 namespace gfx { |
39 class Size; | 38 class Size; |
40 class Rect; | 39 class Rect; |
41 } | 40 } |
42 | 41 |
43 namespace IPC { | 42 namespace IPC { |
44 class Message; | 43 class Message; |
45 } | 44 } |
46 | 45 |
47 namespace ui { | 46 namespace ui { |
| 47 class IMM32Manager; |
48 class ViewProp; | 48 class ViewProp; |
49 } | 49 } |
50 | 50 |
51 namespace WebKit { | 51 namespace WebKit { |
52 struct WebScreenInfo; | 52 struct WebScreenInfo; |
53 } | 53 } |
54 | 54 |
55 namespace content { | 55 namespace content { |
56 class BackingStore; | 56 class BackingStore; |
57 class RenderWidgetHost; | 57 class RenderWidgetHost; |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 599 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
600 | 600 |
601 ui::LatencyInfo software_latency_info_; | 601 ui::LatencyInfo software_latency_info_; |
602 | 602 |
603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 603 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
604 }; | 604 }; |
605 | 605 |
606 } // namespace content | 606 } // namespace content |
607 | 607 |
608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 608 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |