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_BASE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
7 | 7 |
8 #if defined(OS_MACOSX) | 8 #if defined(OS_MACOSX) |
9 #include <OpenGL/OpenGL.h> | 9 #include <OpenGL/OpenGL.h> |
10 #endif | 10 #endif |
11 | 11 |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
| 15 #include "base/callback_forward.h" |
15 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
16 #include "base/callback_forward.h" | |
17 #include "base/process/kill.h" | 17 #include "base/process/kill.h" |
18 #include "base/timer/timer.h" | 18 #include "base/timer/timer.h" |
19 #include "cc/output/compositor_frame.h" | 19 #include "cc/output/compositor_frame.h" |
20 #include "content/browser/renderer_host/event_with_latency_info.h" | 20 #include "content/browser/renderer_host/event_with_latency_info.h" |
21 #include "content/common/content_export.h" | 21 #include "content/common/content_export.h" |
22 #include "content/common/input/input_event_ack_state.h" | 22 #include "content/common/input/input_event_ack_state.h" |
23 #include "content/public/browser/readback_types.h" | 23 #include "content/public/browser/readback_types.h" |
24 #include "content/public/browser/render_widget_host_view.h" | 24 #include "content/public/browser/render_widget_host_view.h" |
25 #include "ipc/ipc_listener.h" | 25 #include "ipc/ipc_listener.h" |
26 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | 26 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" |
27 #include "third_party/WebKit/public/web/WebPopupType.h" | 27 #include "third_party/WebKit/public/web/WebPopupType.h" |
28 #include "third_party/WebKit/public/web/WebTextDirection.h" | 28 #include "third_party/WebKit/public/web/WebTextDirection.h" |
29 #include "ui/base/ime/text_input_mode.h" | 29 #include "ui/base/ime/text_input_mode.h" |
30 #include "ui/base/ime/text_input_type.h" | 30 #include "ui/base/ime/text_input_type.h" |
31 #include "ui/gfx/display.h" | 31 #include "ui/gfx/display.h" |
| 32 #include "ui/gfx/geometry/rect.h" |
32 #include "ui/gfx/native_widget_types.h" | 33 #include "ui/gfx/native_widget_types.h" |
33 #include "ui/gfx/range/range.h" | 34 #include "ui/gfx/range/range.h" |
34 #include "ui/gfx/rect.h" | |
35 #include "ui/surface/transport_dib.h" | 35 #include "ui/surface/transport_dib.h" |
36 | 36 |
37 class SkBitmap; | 37 class SkBitmap; |
38 | 38 |
39 struct AccessibilityHostMsg_EventParams; | 39 struct AccessibilityHostMsg_EventParams; |
40 struct ViewHostMsg_SelectionBounds_Params; | 40 struct ViewHostMsg_SelectionBounds_Params; |
41 | 41 |
42 namespace media { | 42 namespace media { |
43 class VideoFrame; | 43 class VideoFrame; |
44 } | 44 } |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; | 423 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; |
424 | 424 |
425 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; | 425 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; |
426 | 426 |
427 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); | 427 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); |
428 }; | 428 }; |
429 | 429 |
430 } // namespace content | 430 } // namespace content |
431 | 431 |
432 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 432 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
OLD | NEW |