Chromium Code Reviews| 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(); | 673 // ?? Should this use host instead of host_? |
|
Peter Kasting
2014/11/18 00:41:03
This needs to be answered before landing.
I have
| |
| 674 BrowserAccessibilityManager* manager = | 674 BrowserAccessibilityManager* manager = |
| 675 host_->GetOrCreateRootBrowserAccessibilityManager(); | 675 host_->GetOrCreateRootBrowserAccessibilityManager(); |
| 676 if (manager) | 676 if (manager) |
| 677 return manager->GetRoot()->ToBrowserAccessibilityWin(); | 677 return manager->GetRoot()->ToBrowserAccessibilityWin(); |
| 678 #endif | 678 #endif |
| 679 | 679 |
| 680 NOTIMPLEMENTED(); | 680 NOTIMPLEMENTED(); |
| 681 return static_cast<gfx::NativeViewAccessible>(NULL); | 681 return static_cast<gfx::NativeViewAccessible>(NULL); |
| 682 } | 682 } |
| 683 | 683 |
| (...skipping 1868 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2552 | 2552 |
| 2553 //////////////////////////////////////////////////////////////////////////////// | 2553 //////////////////////////////////////////////////////////////////////////////// |
| 2554 // RenderWidgetHostViewBase, public: | 2554 // RenderWidgetHostViewBase, public: |
| 2555 | 2555 |
| 2556 // static | 2556 // static |
| 2557 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2557 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 2558 GetScreenInfoForWindow(results, NULL); | 2558 GetScreenInfoForWindow(results, NULL); |
| 2559 } | 2559 } |
| 2560 | 2560 |
| 2561 } // namespace content | 2561 } // namespace content |
| OLD | NEW |