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 #include "content/browser/renderer_host/render_widget_host_view_android.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_android.h" |
6 | 6 |
7 #include <android/bitmap.h> | 7 #include <android/bitmap.h> |
8 | 8 |
9 #include "base/android/build_info.h" | 9 #include "base/android/build_info.h" |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "cc/output/viewport_selection_bound.h" | 29 #include "cc/output/viewport_selection_bound.h" |
30 #include "cc/resources/single_release_callback.h" | 30 #include "cc/resources/single_release_callback.h" |
31 #include "cc/surfaces/surface.h" | 31 #include "cc/surfaces/surface.h" |
32 #include "cc/surfaces/surface_factory.h" | 32 #include "cc/surfaces/surface_factory.h" |
33 #include "cc/surfaces/surface_id_allocator.h" | 33 #include "cc/surfaces/surface_id_allocator.h" |
34 #include "cc/surfaces/surface_manager.h" | 34 #include "cc/surfaces/surface_manager.h" |
35 #include "cc/trees/layer_tree_host.h" | 35 #include "cc/trees/layer_tree_host.h" |
36 #include "content/browser/accessibility/browser_accessibility_manager_android.h" | 36 #include "content/browser/accessibility/browser_accessibility_manager_android.h" |
37 #include "content/browser/android/composited_touch_handle_drawable.h" | 37 #include "content/browser/android/composited_touch_handle_drawable.h" |
38 #include "content/browser/android/content_view_core_impl.h" | 38 #include "content/browser/android/content_view_core_impl.h" |
39 #include "content/browser/android/edge_effect.h" | |
40 #include "content/browser/android/edge_effect_l.h" | |
41 #include "content/browser/android/in_process/synchronous_compositor_impl.h" | 39 #include "content/browser/android/in_process/synchronous_compositor_impl.h" |
42 #include "content/browser/android/overscroll_controller_android.h" | 40 #include "content/browser/android/overscroll_controller_android.h" |
43 #include "content/browser/android/popup_touch_handle_drawable.h" | 41 #include "content/browser/android/popup_touch_handle_drawable.h" |
44 #include "content/browser/devtools/render_frame_devtools_agent_host.h" | 42 #include "content/browser/devtools/render_frame_devtools_agent_host.h" |
45 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" | 43 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" |
46 #include "content/browser/gpu/compositor_util.h" | 44 #include "content/browser/gpu/compositor_util.h" |
47 #include "content/browser/gpu/gpu_data_manager_impl.h" | 45 #include "content/browser/gpu/gpu_data_manager_impl.h" |
48 #include "content/browser/gpu/gpu_process_host_ui_shim.h" | 46 #include "content/browser/gpu/gpu_process_host_ui_shim.h" |
49 #include "content/browser/media/media_web_contents_observer.h" | 47 #include "content/browser/media/media_web_contents_observer.h" |
50 #include "content/browser/renderer_host/compositor_impl_android.h" | 48 #include "content/browser/renderer_host/compositor_impl_android.h" |
(...skipping 1994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2045 results->orientationAngle = display.RotationAsDegree(); | 2043 results->orientationAngle = display.RotationAsDegree(); |
2046 results->orientationType = | 2044 results->orientationType = |
2047 RenderWidgetHostViewBase::GetOrientationTypeForMobile(display); | 2045 RenderWidgetHostViewBase::GetOrientationTypeForMobile(display); |
2048 gfx::DeviceDisplayInfo info; | 2046 gfx::DeviceDisplayInfo info; |
2049 results->depth = info.GetBitsPerPixel(); | 2047 results->depth = info.GetBitsPerPixel(); |
2050 results->depthPerComponent = info.GetBitsPerComponent(); | 2048 results->depthPerComponent = info.GetBitsPerComponent(); |
2051 results->isMonochrome = (results->depthPerComponent == 0); | 2049 results->isMonochrome = (results->depthPerComponent == 0); |
2052 } | 2050 } |
2053 | 2051 |
2054 } // namespace content | 2052 } // namespace content |
OLD | NEW |