| 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 24 matching lines...) Expand all Loading... |
| 35 #include "ui/android/window_android_observer.h" | 35 #include "ui/android/window_android_observer.h" |
| 36 #include "ui/events/android/motion_event_android.h" | 36 #include "ui/events/android/motion_event_android.h" |
| 37 #include "ui/events/gesture_detection/filtered_gesture_provider.h" | 37 #include "ui/events/gesture_detection/filtered_gesture_provider.h" |
| 38 #include "ui/gfx/geometry/size.h" | 38 #include "ui/gfx/geometry/size.h" |
| 39 #include "ui/gfx/geometry/vector2d_f.h" | 39 #include "ui/gfx/geometry/vector2d_f.h" |
| 40 #include "ui/gfx/selection_bound.h" | 40 #include "ui/gfx/selection_bound.h" |
| 41 #include "ui/touch_selection/touch_selection_controller.h" | 41 #include "ui/touch_selection/touch_selection_controller.h" |
| 42 | 42 |
| 43 class GURL; | 43 class GURL; |
| 44 | 44 |
| 45 namespace cc { | |
| 46 class Layer; | |
| 47 } | |
| 48 | |
| 49 namespace ui { | 45 namespace ui { |
| 50 struct DidOverscrollParams; | 46 struct DidOverscrollParams; |
| 51 } | 47 } |
| 52 | 48 |
| 53 namespace blink { | |
| 54 class WebMouseEvent; | |
| 55 } | |
| 56 | |
| 57 namespace ui { | 49 namespace ui { |
| 58 class DelegatedFrameHostAndroid; | 50 class DelegatedFrameHostAndroid; |
| 59 } | 51 } |
| 60 | 52 |
| 61 namespace content { | 53 namespace content { |
| 62 class ContentViewCoreImpl; | 54 class ContentViewCoreImpl; |
| 63 class OverscrollControllerAndroid; | 55 class OverscrollControllerAndroid; |
| 64 class RenderWidgetHost; | 56 class RenderWidgetHost; |
| 65 class RenderWidgetHostImpl; | 57 class RenderWidgetHostImpl; |
| 66 class SynchronousCompositorHost; | 58 class SynchronousCompositorHost; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 gfx::Vector2dF last_scroll_offset_; | 377 gfx::Vector2dF last_scroll_offset_; |
| 386 | 378 |
| 387 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 379 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
| 388 | 380 |
| 389 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 381 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 390 }; | 382 }; |
| 391 | 383 |
| 392 } // namespace content | 384 } // namespace content |
| 393 | 385 |
| 394 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 386 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |