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.h" | 16 #include "base/process.h" |
17 #include "cc/layers/delegated_renderer_layer_client.h" | 17 #include "cc/layers/delegated_renderer_layer_client.h" |
18 #include "cc/layers/texture_layer_client.h" | 18 #include "cc/layers/texture_layer_client.h" |
19 #include "content/browser/renderer_host/ime_adapter_android.h" | 19 #include "content/browser/renderer_host/ime_adapter_android.h" |
20 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 20 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
21 #include "gpu/command_buffer/common/mailbox.h" | 21 #include "gpu/command_buffer/common/mailbox.h" |
22 #include "third_party/skia/include/core/SkColor.h" | 22 #include "third_party/skia/include/core/SkColor.h" |
23 #include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3
D.h" | 23 #include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
24 #include "ui/gfx/size.h" | 24 #include "ui/gfx/size.h" |
25 #include "ui/gfx/vector2d_f.h" | 25 #include "ui/gfx/vector2d_f.h" |
26 | 26 |
27 struct ViewHostMsg_TextInputState_Params; | 27 struct ViewHostMsg_TextInputState_Params; |
28 | 28 |
29 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; | 29 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; |
30 struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; | 30 struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; |
31 | 31 |
32 namespace cc { | 32 namespace cc { |
33 class DelegatedRendererLayer; | 33 class DelegatedRendererLayer; |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 | 275 |
276 // Used to render overscroll overlays. | 276 // Used to render overscroll overlays. |
277 scoped_ptr<OverscrollGlow> overscroll_effect_; | 277 scoped_ptr<OverscrollGlow> overscroll_effect_; |
278 | 278 |
279 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 279 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
280 }; | 280 }; |
281 | 281 |
282 } // namespace content | 282 } // namespace content |
283 | 283 |
284 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 284 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |