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_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "gpu/command_buffer/common/mailbox.h" | 31 #include "gpu/command_buffer/common/mailbox.h" |
32 #include "third_party/skia/include/core/SkColor.h" | 32 #include "third_party/skia/include/core/SkColor.h" |
33 #include "ui/android/view_android.h" | 33 #include "ui/android/view_android.h" |
34 #include "ui/android/window_android_observer.h" | 34 #include "ui/android/window_android_observer.h" |
35 #include "ui/events/gesture_detection/filtered_gesture_provider.h" | 35 #include "ui/events/gesture_detection/filtered_gesture_provider.h" |
36 #include "ui/gfx/geometry/size.h" | 36 #include "ui/gfx/geometry/size.h" |
37 #include "ui/gfx/geometry/vector2d_f.h" | 37 #include "ui/gfx/geometry/vector2d_f.h" |
38 #include "ui/gfx/selection_bound.h" | 38 #include "ui/gfx/selection_bound.h" |
39 #include "ui/touch_selection/touch_selection_controller.h" | 39 #include "ui/touch_selection/touch_selection_controller.h" |
40 | 40 |
| 41 class GURL; |
| 42 |
41 namespace cc { | 43 namespace cc { |
42 class CopyOutputResult; | |
43 class Layer; | 44 class Layer; |
44 class SurfaceFactory; | |
45 class SurfaceIdAllocator; | |
46 } | 45 } |
47 | 46 |
48 namespace ui { | 47 namespace ui { |
49 struct DidOverscrollParams; | 48 struct DidOverscrollParams; |
50 } | 49 } |
51 | 50 |
52 namespace blink { | 51 namespace blink { |
53 class WebExternalTextureLayer; | |
54 class WebTouchEvent; | |
55 class WebMouseEvent; | 52 class WebMouseEvent; |
56 } | 53 } |
57 | 54 |
58 namespace ui { | 55 namespace ui { |
59 class DelegatedFrameHostAndroid; | 56 class DelegatedFrameHostAndroid; |
60 } | 57 } |
61 | 58 |
62 namespace content { | 59 namespace content { |
63 class ContentViewCoreImpl; | 60 class ContentViewCoreImpl; |
64 class ContentViewCoreObserver; | |
65 class OverscrollControllerAndroid; | 61 class OverscrollControllerAndroid; |
66 class RenderWidgetHost; | 62 class RenderWidgetHost; |
67 class RenderWidgetHostImpl; | 63 class RenderWidgetHostImpl; |
68 class SynchronousCompositorHost; | 64 class SynchronousCompositorHost; |
69 struct NativeWebKeyboardEvent; | 65 struct NativeWebKeyboardEvent; |
70 struct TextInputState; | 66 struct TextInputState; |
71 | 67 |
72 // ----------------------------------------------------------------------------- | 68 // ----------------------------------------------------------------------------- |
73 // See comments in render_widget_host_view.h about this class and its members. | 69 // See comments in render_widget_host_view.h about this class and its members. |
74 // ----------------------------------------------------------------------------- | 70 // ----------------------------------------------------------------------------- |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 gfx::Vector2dF last_scroll_offset_; | 370 gfx::Vector2dF last_scroll_offset_; |
375 | 371 |
376 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 372 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
377 | 373 |
378 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 374 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
379 }; | 375 }; |
380 | 376 |
381 } // namespace content | 377 } // namespace content |
382 | 378 |
383 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 379 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |