Cleanup: Update the path to gfx size headers.
[chromium-blink-merge.git] / content / browser / renderer_host / render_widget_host_view_base.cc
blob3aacfdfd6346e880fb8fd75194671cb9e055b674
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
3 // found in the LICENSE file.
5 #include "content/browser/renderer_host/render_widget_host_view_base.h"
7 #include "base/logging.h"
8 #include "content/browser/accessibility/browser_accessibility_manager.h"
9 #include "content/browser/gpu/gpu_data_manager_impl.h"
10 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h"
11 #include "content/browser/renderer_host/render_process_host_impl.h"
12 #include "content/browser/renderer_host/render_widget_host_impl.h"
13 #include "content/common/content_switches_internal.h"
14 #include "content/public/browser/render_widget_host_view_frame_subscriber.h"
15 #include "ui/gfx/display.h"
16 #include "ui/gfx/geometry/size_conversions.h"
17 #include "ui/gfx/geometry/size_f.h"
18 #include "ui/gfx/screen.h"
20 #if defined(OS_WIN)
21 #include "base/command_line.h"
22 #include "base/message_loop/message_loop.h"
23 #include "base/win/wrapped_window_proc.h"
24 #include "content/browser/plugin_process_host.h"
25 #include "content/browser/plugin_service_impl.h"
26 #include "content/common/plugin_constants_win.h"
27 #include "content/common/webplugin_geometry.h"
28 #include "content/public/browser/browser_thread.h"
29 #include "content/public/browser/child_process_data.h"
30 #include "content/public/common/content_switches.h"
31 #include "ui/gfx/gdi_util.h"
32 #include "ui/gfx/win/dpi.h"
33 #include "ui/gfx/win/hwnd_util.h"
34 #endif
36 namespace content {
38 #if defined(OS_WIN)
40 namespace {
42 // |window| is the plugin HWND, created and destroyed in the plugin process.
43 // |parent| is the parent HWND, created and destroyed on the browser UI thread.
44 void NotifyPluginProcessHostHelper(HWND window, HWND parent, int tries) {
45 // How long to wait between each try.
46 static const int kTryDelayMs = 200;
48 DWORD plugin_process_id;
49 bool found_starting_plugin_process = false;
50 GetWindowThreadProcessId(window, &plugin_process_id);
51 for (PluginProcessHostIterator iter; !iter.Done(); ++iter) {
52 if (!iter.GetData().handle) {
53 found_starting_plugin_process = true;
54 continue;
56 if (base::GetProcId(iter.GetData().handle) == plugin_process_id) {
57 iter->AddWindow(parent);
58 return;
62 if (found_starting_plugin_process) {
63 // A plugin process has started but we don't have its handle yet. Since
64 // it's most likely the one for this plugin, try a few more times after a
65 // delay.
66 if (tries > 0) {
67 base::MessageLoop::current()->PostDelayedTask(
68 FROM_HERE,
69 base::Bind(&NotifyPluginProcessHostHelper, window, parent, tries - 1),
70 base::TimeDelta::FromMilliseconds(kTryDelayMs));
71 return;
75 // The plugin process might have died in the time to execute the task, don't
76 // leak the HWND.
77 PostMessage(parent, WM_CLOSE, 0, 0);
80 // The plugin wrapper window which lives in the browser process has this proc
81 // as its window procedure. We only handle the WM_PARENTNOTIFY message sent by
82 // windowed plugins for mouse input. This is forwarded off to the wrappers
83 // parent which is typically the RVH window which turns on user gesture.
84 LRESULT CALLBACK PluginWrapperWindowProc(HWND window, unsigned int message,
85 WPARAM wparam, LPARAM lparam) {
86 if (message == WM_PARENTNOTIFY) {
87 switch (LOWORD(wparam)) {
88 case WM_LBUTTONDOWN:
89 case WM_RBUTTONDOWN:
90 case WM_MBUTTONDOWN:
91 ::SendMessage(GetParent(window), message, wparam, lparam);
92 return 0;
93 default:
94 break;
97 return ::DefWindowProc(window, message, wparam, lparam);
100 bool IsPluginWrapperWindow(HWND window) {
101 return gfx::GetClassNameW(window) ==
102 base::string16(kWrapperNativeWindowClassName);
105 // Create an intermediate window between the given HWND and its parent.
106 HWND ReparentWindow(HWND window, HWND parent) {
107 static ATOM atom = 0;
108 static HMODULE instance = NULL;
109 if (!atom) {
110 WNDCLASSEX window_class;
111 base::win::InitializeWindowClass(
112 kWrapperNativeWindowClassName,
113 &base::win::WrappedWindowProc<PluginWrapperWindowProc>,
114 CS_DBLCLKS,
117 NULL,
118 // xxx reinterpret_cast<HBRUSH>(COLOR_WINDOW+1),
119 reinterpret_cast<HBRUSH>(COLOR_GRAYTEXT+1),
120 NULL,
121 NULL,
122 NULL,
123 &window_class);
124 instance = window_class.hInstance;
125 atom = RegisterClassEx(&window_class);
127 DCHECK(atom);
129 HWND new_parent = CreateWindowEx(
130 WS_EX_LEFT | WS_EX_LTRREADING | WS_EX_RIGHTSCROLLBAR,
131 MAKEINTATOM(atom), 0,
132 WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS,
133 0, 0, 0, 0, parent, 0, instance, 0);
134 gfx::CheckWindowCreated(new_parent);
135 ::SetParent(window, new_parent);
136 // How many times we try to find a PluginProcessHost whose process matches
137 // the HWND.
138 static const int kMaxTries = 5;
139 BrowserThread::PostTask(
140 BrowserThread::IO,
141 FROM_HERE,
142 base::Bind(&NotifyPluginProcessHostHelper, window, new_parent,
143 kMaxTries));
144 return new_parent;
147 BOOL CALLBACK PaintEnumChildProc(HWND hwnd, LPARAM lparam) {
148 if (!PluginServiceImpl::GetInstance()->IsPluginWindow(hwnd))
149 return TRUE;
151 gfx::Rect* rect = reinterpret_cast<gfx::Rect*>(lparam);
152 gfx::Rect rect_in_pixels = gfx::win::DIPToScreenRect(*rect);
153 static UINT msg = RegisterWindowMessage(kPaintMessageName);
154 WPARAM wparam = MAKEWPARAM(rect_in_pixels.x(), rect_in_pixels.y());
155 lparam = MAKELPARAM(rect_in_pixels.width(), rect_in_pixels.height());
157 // SendMessage gets the message across much quicker than PostMessage, since it
158 // doesn't get queued. When the plugin thread calls PeekMessage or other
159 // Win32 APIs, sent messages are dispatched automatically.
160 SendNotifyMessage(hwnd, msg, wparam, lparam);
162 return TRUE;
165 // Windows callback for OnDestroy to detach the plugin windows.
166 BOOL CALLBACK DetachPluginWindowsCallbackInternal(HWND window, LPARAM param) {
167 RenderWidgetHostViewBase::DetachPluginWindowsCallback(window);
168 return TRUE;
171 } // namespace
173 // static
174 void RenderWidgetHostViewBase::DetachPluginWindowsCallback(HWND window) {
175 if (PluginServiceImpl::GetInstance()->IsPluginWindow(window) &&
176 !IsHungAppWindow(window)) {
177 ::ShowWindow(window, SW_HIDE);
178 SetParent(window, NULL);
182 // static
183 void RenderWidgetHostViewBase::MovePluginWindowsHelper(
184 HWND parent,
185 const std::vector<WebPluginGeometry>& moves) {
186 if (moves.empty())
187 return;
189 bool oop_plugins = !base::CommandLine::ForCurrentProcess()->HasSwitch(
190 switches::kSingleProcess);
192 HDWP defer_window_pos_info =
193 ::BeginDeferWindowPos(static_cast<int>(moves.size()));
195 if (!defer_window_pos_info) {
196 NOTREACHED();
197 return;
200 #if defined(USE_AURA)
201 std::vector<RECT> invalidate_rects;
202 #endif
204 for (size_t i = 0; i < moves.size(); ++i) {
205 unsigned long flags = 0;
206 const WebPluginGeometry& move = moves[i];
207 HWND window = move.window;
209 // As the plugin parent window which lives on the browser UI thread is
210 // destroyed asynchronously, it is possible that we have a stale window
211 // sent in by the renderer for moving around.
212 // Note: get the parent before checking if the window is valid, to avoid a
213 // race condition where the window is destroyed after the check but before
214 // the GetParent call.
215 HWND cur_parent = ::GetParent(window);
216 if (!::IsWindow(window))
217 continue;
219 if (!PluginServiceImpl::GetInstance()->IsPluginWindow(window)) {
220 // The renderer should only be trying to move plugin windows. However,
221 // this may happen as a result of a race condition (i.e. even after the
222 // check right above), so we ignore it.
223 continue;
226 if (oop_plugins) {
227 if (cur_parent == GetDesktopWindow()) {
228 // The plugin window hasn't been parented yet, add an intermediate
229 // window that lives on this thread to speed up scrolling. Note this
230 // only works with out of process plugins since we depend on
231 // PluginProcessHost to destroy the intermediate HWNDs.
232 cur_parent = ReparentWindow(window, parent);
233 ::ShowWindow(window, SW_SHOW); // Window was created hidden.
234 } else if (!IsPluginWrapperWindow(cur_parent)) {
235 continue; // Race if plugin process is shutting down.
238 // We move the intermediate parent window which doesn't result in cross-
239 // process synchronous Windows messages.
240 window = cur_parent;
241 } else {
242 if (cur_parent == GetDesktopWindow())
243 SetParent(window, parent);
246 if (move.visible)
247 flags |= SWP_SHOWWINDOW;
248 else
249 flags |= SWP_HIDEWINDOW;
251 #if defined(USE_AURA)
252 if (GpuDataManagerImpl::GetInstance()->CanUseGpuBrowserCompositor()) {
253 // Without this flag, Windows repaints the parent area uncovered by this
254 // move. However when software compositing is used the clipping region is
255 // ignored. Since in Aura the browser chrome could be under the plugin, if
256 // if Windows tries to paint it synchronously inside EndDeferWindowsPos
257 // then it won't have the data and it will flash white. So instead we
258 // manually redraw the plugin.
259 // Why not do this for native Windows? Not sure if there are any
260 // performance issues with this.
261 flags |= SWP_NOREDRAW;
263 #endif
265 if (move.rects_valid) {
266 gfx::Rect clip_rect_in_pixel = gfx::win::DIPToScreenRect(move.clip_rect);
267 HRGN hrgn = ::CreateRectRgn(clip_rect_in_pixel.x(),
268 clip_rect_in_pixel.y(),
269 clip_rect_in_pixel.right(),
270 clip_rect_in_pixel.bottom());
271 gfx::SubtractRectanglesFromRegion(hrgn, move.cutout_rects);
273 // Note: System will own the hrgn after we call SetWindowRgn,
274 // so we don't need to call DeleteObject(hrgn)
275 ::SetWindowRgn(window, hrgn,
276 !move.clip_rect.IsEmpty() && (flags & SWP_NOREDRAW) == 0);
278 #if defined(USE_AURA)
279 // When using the software compositor, if the clipping rectangle is empty
280 // then DeferWindowPos won't redraw the newly uncovered area under the
281 // plugin.
282 if (clip_rect_in_pixel.IsEmpty() &&
283 !GpuDataManagerImpl::GetInstance()->CanUseGpuBrowserCompositor()) {
284 RECT r;
285 GetClientRect(window, &r);
286 MapWindowPoints(window, parent, reinterpret_cast<POINT*>(&r), 2);
287 invalidate_rects.push_back(r);
289 #endif
290 } else {
291 flags |= SWP_NOMOVE;
292 flags |= SWP_NOSIZE;
295 gfx::Rect window_rect_in_pixel =
296 gfx::win::DIPToScreenRect(move.window_rect);
297 defer_window_pos_info = ::DeferWindowPos(defer_window_pos_info,
298 window, NULL,
299 window_rect_in_pixel.x(),
300 window_rect_in_pixel.y(),
301 window_rect_in_pixel.width(),
302 window_rect_in_pixel.height(),
303 flags);
305 if (!defer_window_pos_info) {
306 DCHECK(false) << "DeferWindowPos failed, so all plugin moves ignored.";
307 return;
311 ::EndDeferWindowPos(defer_window_pos_info);
313 #if defined(USE_AURA)
314 if (GpuDataManagerImpl::GetInstance()->CanUseGpuBrowserCompositor()) {
315 for (size_t i = 0; i < moves.size(); ++i) {
316 const WebPluginGeometry& move = moves[i];
317 RECT r;
318 GetWindowRect(move.window, &r);
319 gfx::Rect gr(r);
320 PaintEnumChildProc(move.window, reinterpret_cast<LPARAM>(&gr));
322 } else {
323 for (size_t i = 0; i < invalidate_rects.size(); ++i) {
324 ::RedrawWindow(
325 parent, &invalidate_rects[i], NULL,
326 // These flags are from WebPluginDelegateImpl::NativeWndProc.
327 RDW_INVALIDATE | RDW_ALLCHILDREN | RDW_FRAME | RDW_UPDATENOW);
330 #endif
333 // static
334 void RenderWidgetHostViewBase::PaintPluginWindowsHelper(
335 HWND parent, const gfx::Rect& damaged_screen_rect) {
336 LPARAM lparam = reinterpret_cast<LPARAM>(&damaged_screen_rect);
337 EnumChildWindows(parent, PaintEnumChildProc, lparam);
340 // static
341 void RenderWidgetHostViewBase::DetachPluginsHelper(HWND parent) {
342 // When a tab is closed all its child plugin windows are destroyed
343 // automatically. This happens before plugins get any notification that its
344 // instances are tearing down.
346 // Plugins like Quicktime assume that their windows will remain valid as long
347 // as they have plugin instances active. Quicktime crashes in this case
348 // because its windowing code cleans up an internal data structure that the
349 // handler for NPP_DestroyStream relies on.
351 // The fix is to detach plugin windows from web contents when it is going
352 // away. This will prevent the plugin windows from getting destroyed
353 // automatically. The detached plugin windows will get cleaned up in proper
354 // sequence as part of the usual cleanup when the plugin instance goes away.
355 EnumChildWindows(parent, DetachPluginWindowsCallbackInternal, NULL);
358 #endif // OS_WIN
360 namespace {
362 // How many microseconds apart input events should be flushed.
363 const int kFlushInputRateInUs = 16666;
367 RenderWidgetHostViewBase::RenderWidgetHostViewBase()
368 : popup_type_(blink::WebPopupTypeNone),
369 background_color_(SK_ColorWHITE),
370 mouse_locked_(false),
371 showing_context_menu_(false),
372 selection_text_offset_(0),
373 selection_range_(gfx::Range::InvalidRange()),
374 current_device_scale_factor_(0),
375 current_display_rotation_(gfx::Display::ROTATE_0),
376 pinch_zoom_enabled_(content::IsPinchToZoomEnabled()),
377 renderer_frame_number_(0),
378 weak_factory_(this) {
381 RenderWidgetHostViewBase::~RenderWidgetHostViewBase() {
382 DCHECK(!mouse_locked_);
385 bool RenderWidgetHostViewBase::OnMessageReceived(const IPC::Message& msg){
386 return false;
389 void RenderWidgetHostViewBase::SetBackgroundColor(SkColor color) {
390 background_color_ = color;
393 void RenderWidgetHostViewBase::SetBackgroundColorToDefault() {
394 SetBackgroundColor(SK_ColorWHITE);
397 bool RenderWidgetHostViewBase::GetBackgroundOpaque() {
398 return SkColorGetA(background_color_) == SK_AlphaOPAQUE;
401 gfx::Size RenderWidgetHostViewBase::GetPhysicalBackingSize() const {
402 gfx::NativeView view = GetNativeView();
403 gfx::Display display =
404 gfx::Screen::GetScreenFor(view)->GetDisplayNearestWindow(view);
405 return gfx::ToCeiledSize(gfx::ScaleSize(GetRequestedRendererSize(),
406 display.device_scale_factor()));
409 bool RenderWidgetHostViewBase::DoTopControlsShrinkBlinkSize() const {
410 return false;
413 float RenderWidgetHostViewBase::GetTopControlsHeight() const {
414 return 0.f;
417 void RenderWidgetHostViewBase::SelectionChanged(const base::string16& text,
418 size_t offset,
419 const gfx::Range& range) {
420 selection_text_ = text;
421 selection_text_offset_ = offset;
422 selection_range_.set_start(range.start());
423 selection_range_.set_end(range.end());
426 gfx::Size RenderWidgetHostViewBase::GetRequestedRendererSize() const {
427 return GetViewBounds().size();
430 ui::TextInputClient* RenderWidgetHostViewBase::GetTextInputClient() {
431 NOTREACHED();
432 return NULL;
435 bool RenderWidgetHostViewBase::IsShowingContextMenu() const {
436 return showing_context_menu_;
439 void RenderWidgetHostViewBase::SetShowingContextMenu(bool showing) {
440 DCHECK_NE(showing_context_menu_, showing);
441 showing_context_menu_ = showing;
444 base::string16 RenderWidgetHostViewBase::GetSelectedText() const {
445 if (!selection_range_.IsValid())
446 return base::string16();
447 return selection_text_.substr(
448 selection_range_.GetMin() - selection_text_offset_,
449 selection_range_.length());
452 bool RenderWidgetHostViewBase::IsMouseLocked() {
453 return mouse_locked_;
456 InputEventAckState RenderWidgetHostViewBase::FilterInputEvent(
457 const blink::WebInputEvent& input_event) {
458 // By default, input events are simply forwarded to the renderer.
459 return INPUT_EVENT_ACK_STATE_NOT_CONSUMED;
462 void RenderWidgetHostViewBase::OnDidFlushInput() {
463 // The notification can safely be ignored by most implementations.
466 void RenderWidgetHostViewBase::OnSetNeedsFlushInput() {
467 if (flush_input_timer_.IsRunning())
468 return;
470 flush_input_timer_.Start(
471 FROM_HERE,
472 base::TimeDelta::FromMicroseconds(kFlushInputRateInUs),
473 this,
474 &RenderWidgetHostViewBase::FlushInput);
477 void RenderWidgetHostViewBase::WheelEventAck(
478 const blink::WebMouseWheelEvent& event,
479 InputEventAckState ack_result) {
482 void RenderWidgetHostViewBase::GestureEventAck(
483 const blink::WebGestureEvent& event,
484 InputEventAckState ack_result) {
487 void RenderWidgetHostViewBase::SetPopupType(blink::WebPopupType popup_type) {
488 popup_type_ = popup_type;
491 blink::WebPopupType RenderWidgetHostViewBase::GetPopupType() {
492 return popup_type_;
495 BrowserAccessibilityManager*
496 RenderWidgetHostViewBase::CreateBrowserAccessibilityManager(
497 BrowserAccessibilityDelegate* delegate) {
498 NOTREACHED();
499 return NULL;
502 void RenderWidgetHostViewBase::AccessibilityShowMenu(const gfx::Point& point) {
505 gfx::Point RenderWidgetHostViewBase::AccessibilityOriginInScreen(
506 const gfx::Rect& bounds) {
507 return bounds.origin();
510 gfx::AcceleratedWidget
511 RenderWidgetHostViewBase::AccessibilityGetAcceleratedWidget() {
512 return gfx::kNullAcceleratedWidget;
515 gfx::NativeViewAccessible
516 RenderWidgetHostViewBase::AccessibilityGetNativeViewAccessible() {
517 return NULL;
520 void RenderWidgetHostViewBase::UpdateScreenInfo(gfx::NativeView view) {
521 RenderWidgetHostImpl* impl = NULL;
522 if (GetRenderWidgetHost())
523 impl = RenderWidgetHostImpl::From(GetRenderWidgetHost());
525 if (impl)
526 impl->SendScreenRects();
528 if (HasDisplayPropertyChanged(view) && impl)
529 impl->NotifyScreenInfoChanged();
532 bool RenderWidgetHostViewBase::HasDisplayPropertyChanged(gfx::NativeView view) {
533 gfx::Display display =
534 gfx::Screen::GetScreenFor(view)->GetDisplayNearestWindow(view);
535 if (current_display_area_ == display.work_area() &&
536 current_device_scale_factor_ == display.device_scale_factor() &&
537 current_display_rotation_ == display.rotation()) {
538 return false;
541 current_display_area_ = display.work_area();
542 current_device_scale_factor_ = display.device_scale_factor();
543 current_display_rotation_ = display.rotation();
544 return true;
547 base::WeakPtr<RenderWidgetHostViewBase> RenderWidgetHostViewBase::GetWeakPtr() {
548 return weak_factory_.GetWeakPtr();
551 scoped_ptr<SyntheticGestureTarget>
552 RenderWidgetHostViewBase::CreateSyntheticGestureTarget() {
553 RenderWidgetHostImpl* host =
554 RenderWidgetHostImpl::From(GetRenderWidgetHost());
555 return scoped_ptr<SyntheticGestureTarget>(
556 new SyntheticGestureTargetBase(host));
559 // Platform implementation should override this method to allow frame
560 // subscription. Frame subscriber is set to RenderProcessHost, which is
561 // platform independent. It should be set to the specific presenter on each
562 // platform.
563 bool RenderWidgetHostViewBase::CanSubscribeFrame() const {
564 NOTIMPLEMENTED();
565 return false;
568 // Base implementation for this method sets the subscriber to RenderProcessHost,
569 // which is platform independent. Note: Implementation only support subscribing
570 // to accelerated composited frames.
571 void RenderWidgetHostViewBase::BeginFrameSubscription(
572 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) {
573 RenderWidgetHostImpl* impl = NULL;
574 if (GetRenderWidgetHost())
575 impl = RenderWidgetHostImpl::From(GetRenderWidgetHost());
576 if (!impl)
577 return;
578 RenderProcessHostImpl* render_process_host =
579 static_cast<RenderProcessHostImpl*>(impl->GetProcess());
580 render_process_host->BeginFrameSubscription(impl->GetRoutingID(),
581 subscriber.Pass());
584 void RenderWidgetHostViewBase::EndFrameSubscription() {
585 RenderWidgetHostImpl* impl = NULL;
586 if (GetRenderWidgetHost())
587 impl = RenderWidgetHostImpl::From(GetRenderWidgetHost());
588 if (!impl)
589 return;
590 RenderProcessHostImpl* render_process_host =
591 static_cast<RenderProcessHostImpl*>(impl->GetProcess());
592 render_process_host->EndFrameSubscription(impl->GetRoutingID());
595 uint32 RenderWidgetHostViewBase::RendererFrameNumber() {
596 return renderer_frame_number_;
599 void RenderWidgetHostViewBase::DidReceiveRendererFrame() {
600 ++renderer_frame_number_;
603 void RenderWidgetHostViewBase::FlushInput() {
604 RenderWidgetHostImpl* impl = NULL;
605 if (GetRenderWidgetHost())
606 impl = RenderWidgetHostImpl::From(GetRenderWidgetHost());
607 if (!impl)
608 return;
609 impl->FlushInput();
612 SkColorType RenderWidgetHostViewBase::PreferredReadbackFormat() {
613 return kN32_SkColorType;
616 void RenderWidgetHostViewBase::OnTextSurroundingSelectionResponse(
617 const base::string16& content,
618 size_t start_offset,
619 size_t end_offset) {
620 NOTIMPLEMENTED();
623 void RenderWidgetHostViewBase::ShowDisambiguationPopup(
624 const gfx::Rect& rect_pixels,
625 const SkBitmap& zoomed_bitmap) {
626 NOTIMPLEMENTED();
629 gfx::Size RenderWidgetHostViewBase::GetVisibleViewportSize() const {
630 return GetViewBounds().size();
633 void RenderWidgetHostViewBase::SetInsets(const gfx::Insets& insets) {
634 NOTIMPLEMENTED();
637 // static
638 blink::WebScreenOrientationType
639 RenderWidgetHostViewBase::GetOrientationTypeForMobile(
640 const gfx::Display& display) {
641 int angle = display.RotationAsDegree();
642 const gfx::Rect& bounds = display.bounds();
644 // Whether the device's natural orientation is portrait.
645 bool natural_portrait = false;
646 if (angle == 0 || angle == 180) // The device is in its natural orientation.
647 natural_portrait = bounds.height() >= bounds.width();
648 else
649 natural_portrait = bounds.height() <= bounds.width();
651 switch (angle) {
652 case 0:
653 return natural_portrait ? blink::WebScreenOrientationPortraitPrimary
654 : blink::WebScreenOrientationLandscapePrimary;
655 case 90:
656 return natural_portrait ? blink::WebScreenOrientationLandscapePrimary
657 : blink::WebScreenOrientationPortraitSecondary;
658 case 180:
659 return natural_portrait ? blink::WebScreenOrientationPortraitSecondary
660 : blink::WebScreenOrientationLandscapeSecondary;
661 case 270:
662 return natural_portrait ? blink::WebScreenOrientationLandscapeSecondary
663 : blink::WebScreenOrientationPortraitPrimary;
664 default:
665 NOTREACHED();
666 return blink::WebScreenOrientationPortraitPrimary;
670 // static
671 blink::WebScreenOrientationType
672 RenderWidgetHostViewBase::GetOrientationTypeForDesktop(
673 const gfx::Display& display) {
674 static int primary_landscape_angle = -1;
675 static int primary_portrait_angle = -1;
677 int angle = display.RotationAsDegree();
678 const gfx::Rect& bounds = display.bounds();
679 bool is_portrait = bounds.height() >= bounds.width();
681 if (is_portrait && primary_portrait_angle == -1)
682 primary_portrait_angle = angle;
684 if (!is_portrait && primary_landscape_angle == -1)
685 primary_landscape_angle = angle;
687 if (is_portrait) {
688 return primary_portrait_angle == angle
689 ? blink::WebScreenOrientationPortraitPrimary
690 : blink::WebScreenOrientationPortraitSecondary;
693 return primary_landscape_angle == angle
694 ? blink::WebScreenOrientationLandscapePrimary
695 : blink::WebScreenOrientationLandscapeSecondary;
698 } // namespace content