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_aura.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
6 | 6 |
7 #include "base/auto_reset.h" | 7 #include "base/auto_reset.h" |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback_helpers.h" | 10 #include "base/callback_helpers.h" |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 return reinterpret_cast<gfx::NativeViewId>(host->GetAcceleratedWidget()); | 663 return reinterpret_cast<gfx::NativeViewId>(host->GetAcceleratedWidget()); |
664 #endif | 664 #endif |
665 return static_cast<gfx::NativeViewId>(NULL); | 665 return static_cast<gfx::NativeViewId>(NULL); |
666 } | 666 } |
667 | 667 |
668 gfx::NativeViewAccessible RenderWidgetHostViewAura::GetNativeViewAccessible() { | 668 gfx::NativeViewAccessible RenderWidgetHostViewAura::GetNativeViewAccessible() { |
669 #if defined(OS_WIN) | 669 #if defined(OS_WIN) |
670 aura::WindowTreeHost* host = window_->GetHost(); | 670 aura::WindowTreeHost* host = window_->GetHost(); |
671 if (!host) | 671 if (!host) |
672 return static_cast<gfx::NativeViewAccessible>(NULL); | 672 return static_cast<gfx::NativeViewAccessible>(NULL); |
673 HWND hwnd = host->GetAcceleratedWidget(); | |
674 BrowserAccessibilityManager* manager = | 673 BrowserAccessibilityManager* manager = |
675 host_->GetOrCreateRootBrowserAccessibilityManager(); | 674 host_->GetOrCreateRootBrowserAccessibilityManager(); |
676 if (manager) | 675 if (manager) |
677 return manager->GetRoot()->ToBrowserAccessibilityWin(); | 676 return manager->GetRoot()->ToBrowserAccessibilityWin(); |
678 #endif | 677 #endif |
679 | 678 |
680 NOTIMPLEMENTED(); | 679 NOTIMPLEMENTED(); |
681 return static_cast<gfx::NativeViewAccessible>(NULL); | 680 return static_cast<gfx::NativeViewAccessible>(NULL); |
682 } | 681 } |
683 | 682 |
(...skipping 1894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2578 | 2577 |
2579 //////////////////////////////////////////////////////////////////////////////// | 2578 //////////////////////////////////////////////////////////////////////////////// |
2580 // RenderWidgetHostViewBase, public: | 2579 // RenderWidgetHostViewBase, public: |
2581 | 2580 |
2582 // static | 2581 // static |
2583 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2582 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
2584 GetScreenInfoForWindow(results, NULL); | 2583 GetScreenInfoForWindow(results, NULL); |
2585 } | 2584 } |
2586 | 2585 |
2587 } // namespace content | 2586 } // namespace content |
OLD | NEW |