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 12 matching lines...) Expand all Loading... |
23 #include "cc/surfaces/surface_id.h" | 23 #include "cc/surfaces/surface_id.h" |
24 #include "content/browser/accessibility/browser_accessibility_manager.h" | 24 #include "content/browser/accessibility/browser_accessibility_manager.h" |
25 #include "content/browser/android/content_view_core_impl_observer.h" | 25 #include "content/browser/android/content_view_core_impl_observer.h" |
26 #include "content/browser/renderer_host/delegated_frame_evictor.h" | 26 #include "content/browser/renderer_host/delegated_frame_evictor.h" |
27 #include "content/browser/renderer_host/ime_adapter_android.h" | 27 #include "content/browser/renderer_host/ime_adapter_android.h" |
28 #include "content/browser/renderer_host/input/stylus_text_selector.h" | 28 #include "content/browser/renderer_host/input/stylus_text_selector.h" |
29 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 29 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
30 #include "content/common/content_export.h" | 30 #include "content/common/content_export.h" |
31 #include "content/public/browser/readback_types.h" | 31 #include "content/public/browser/readback_types.h" |
32 #include "gpu/command_buffer/common/mailbox.h" | 32 #include "gpu/command_buffer/common/mailbox.h" |
33 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | |
34 #include "third_party/skia/include/core/SkColor.h" | 33 #include "third_party/skia/include/core/SkColor.h" |
35 #include "ui/android/window_android_observer.h" | 34 #include "ui/android/window_android_observer.h" |
36 #include "ui/events/gesture_detection/filtered_gesture_provider.h" | 35 #include "ui/events/gesture_detection/filtered_gesture_provider.h" |
37 #include "ui/gfx/geometry/size.h" | 36 #include "ui/gfx/geometry/size.h" |
38 #include "ui/gfx/geometry/vector2d_f.h" | 37 #include "ui/gfx/geometry/vector2d_f.h" |
39 #include "ui/touch_selection/touch_selection_controller.h" | 38 #include "ui/touch_selection/touch_selection_controller.h" |
40 | 39 |
41 namespace cc { | 40 namespace cc { |
42 class CopyOutputResult; | 41 class CopyOutputResult; |
43 class Layer; | 42 class Layer; |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 gfx::Vector2dF last_scroll_offset_; | 406 gfx::Vector2dF last_scroll_offset_; |
408 | 407 |
409 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 408 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
410 | 409 |
411 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 410 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
412 }; | 411 }; |
413 | 412 |
414 } // namespace content | 413 } // namespace content |
415 | 414 |
416 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 415 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |