| 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_base.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/browser/accessibility/browser_accessibility_manager.h" | 8 #include "content/browser/accessibility/browser_accessibility_manager.h" |
| 9 #include "content/browser/gpu/gpu_data_manager_impl.h" | 9 #include "content/browser/gpu/gpu_data_manager_impl.h" |
| 10 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h" | 10 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h" |
| 11 #include "content/browser/renderer_host/render_process_host_impl.h" | 11 #include "content/browser/renderer_host/render_process_host_impl.h" |
| 12 #include "content/browser/renderer_host/render_widget_host_impl.h" | 12 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 13 #include "content/common/content_switches_internal.h" | 13 #include "content/common/content_switches_internal.h" |
| 14 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" | 14 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" |
| 15 #include "ui/gfx/display.h" | 15 #include "ui/gfx/display.h" |
| 16 #include "ui/gfx/geometry/size_conversions.h" |
| 17 #include "ui/gfx/geometry/size_f.h" |
| 16 #include "ui/gfx/screen.h" | 18 #include "ui/gfx/screen.h" |
| 17 #include "ui/gfx/size_conversions.h" | |
| 18 #include "ui/gfx/size_f.h" | |
| 19 | 19 |
| 20 #if defined(OS_WIN) | 20 #if defined(OS_WIN) |
| 21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
| 22 #include "base/message_loop/message_loop.h" | 22 #include "base/message_loop/message_loop.h" |
| 23 #include "base/win/wrapped_window_proc.h" | 23 #include "base/win/wrapped_window_proc.h" |
| 24 #include "content/browser/plugin_process_host.h" | 24 #include "content/browser/plugin_process_host.h" |
| 25 #include "content/browser/plugin_service_impl.h" | 25 #include "content/browser/plugin_service_impl.h" |
| 26 #include "content/common/plugin_constants_win.h" | 26 #include "content/common/plugin_constants_win.h" |
| 27 #include "content/common/webplugin_geometry.h" | 27 #include "content/common/webplugin_geometry.h" |
| 28 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 ? blink::WebScreenOrientationPortraitPrimary | 689 ? blink::WebScreenOrientationPortraitPrimary |
| 690 : blink::WebScreenOrientationPortraitSecondary; | 690 : blink::WebScreenOrientationPortraitSecondary; |
| 691 } | 691 } |
| 692 | 692 |
| 693 return primary_landscape_angle == angle | 693 return primary_landscape_angle == angle |
| 694 ? blink::WebScreenOrientationLandscapePrimary | 694 ? blink::WebScreenOrientationLandscapePrimary |
| 695 : blink::WebScreenOrientationLandscapeSecondary; | 695 : blink::WebScreenOrientationLandscapeSecondary; |
| 696 } | 696 } |
| 697 | 697 |
| 698 } // namespace content | 698 } // namespace content |
| OLD | NEW |