| 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 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/i18n/rtl.h" | 13 #include "base/i18n/rtl.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/process/process.h" | 16 #include "base/process/process.h" |
| 17 #include "cc/layers/delegated_frame_resource_collection.h" | 17 #include "cc/layers/delegated_frame_resource_collection.h" |
| 18 #include "cc/output/begin_frame_args.h" | 18 #include "cc/output/begin_frame_args.h" |
| 19 #include "content/browser/accessibility/browser_accessibility_manager.h" | 19 #include "content/browser/accessibility/browser_accessibility_manager.h" |
| 20 #include "content/browser/renderer_host/delegated_frame_evictor.h" | 20 #include "content/browser/renderer_host/delegated_frame_evictor.h" |
| 21 #include "content/browser/renderer_host/ime_adapter_android.h" | 21 #include "content/browser/renderer_host/ime_adapter_android.h" |
| 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/render_widget_host_view_base.h" | 23 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 24 #include "content/common/content_export.h" | 24 #include "content/common/content_export.h" |
| 25 #include "content/public/browser/readback_types.h" | 25 #include "content/public/browser/readback_types.h" |
| 26 #include "gpu/command_buffer/common/mailbox.h" | 26 #include "gpu/command_buffer/common/mailbox.h" |
| 27 #include "third_party/skia/include/core/SkColor.h" | 27 #include "third_party/skia/include/core/SkColor.h" |
| 28 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" | 28 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
| 29 #include "ui/base/android/window_android_observer.h" | 29 #include "ui/android/window_android_observer.h" |
| 30 #include "ui/events/gesture_detection/filtered_gesture_provider.h" | 30 #include "ui/events/gesture_detection/filtered_gesture_provider.h" |
| 31 #include "ui/gfx/geometry/size.h" | 31 #include "ui/gfx/geometry/size.h" |
| 32 #include "ui/gfx/geometry/vector2d_f.h" | 32 #include "ui/gfx/geometry/vector2d_f.h" |
| 33 #include "ui/touch_selection/touch_selection_controller.h" | 33 #include "ui/touch_selection/touch_selection_controller.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; |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 gfx::Vector2dF last_scroll_offset_; | 410 gfx::Vector2dF last_scroll_offset_; |
| 411 | 411 |
| 412 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 412 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
| 413 | 413 |
| 414 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 414 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 415 }; | 415 }; |
| 416 | 416 |
| 417 } // namespace content | 417 } // namespace content |
| 418 | 418 |
| 419 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 419 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |