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 <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "content/browser/renderer_host/input/stylus_text_selector.h" | 22 #include "content/browser/renderer_host/input/stylus_text_selector.h" |
23 #include "content/browser/renderer_host/input/touch_selection_controller.h" | 23 #include "content/browser/renderer_host/input/touch_selection_controller.h" |
24 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 24 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
25 #include "content/common/content_export.h" | 25 #include "content/common/content_export.h" |
26 #include "content/public/browser/readback_types.h" | 26 #include "content/public/browser/readback_types.h" |
27 #include "gpu/command_buffer/common/mailbox.h" | 27 #include "gpu/command_buffer/common/mailbox.h" |
28 #include "third_party/skia/include/core/SkColor.h" | 28 #include "third_party/skia/include/core/SkColor.h" |
29 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 29 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
30 #include "ui/base/android/window_android_observer.h" | 30 #include "ui/base/android/window_android_observer.h" |
31 #include "ui/events/gesture_detection/filtered_gesture_provider.h" | 31 #include "ui/events/gesture_detection/filtered_gesture_provider.h" |
32 #include "ui/gfx/geometry/size.h" | 32 #include "ui/gfx/size.h" |
33 #include "ui/gfx/geometry/vector2d_f.h" | 33 #include "ui/gfx/vector2d_f.h" |
34 | 34 |
35 struct ViewHostMsg_TextInputState_Params; | 35 struct ViewHostMsg_TextInputState_Params; |
36 | 36 |
37 namespace cc { | 37 namespace cc { |
38 class CopyOutputResult; | 38 class CopyOutputResult; |
39 class DelegatedFrameProvider; | 39 class DelegatedFrameProvider; |
40 class DelegatedRendererLayer; | 40 class DelegatedRendererLayer; |
41 class Layer; | 41 class Layer; |
42 } | 42 } |
43 | 43 |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 gfx::Vector2dF last_scroll_offset_; | 415 gfx::Vector2dF last_scroll_offset_; |
416 | 416 |
417 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 417 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
418 | 418 |
419 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 419 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
420 }; | 420 }; |
421 | 421 |
422 } // namespace content | 422 } // namespace content |
423 | 423 |
424 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 424 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |