| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 "ui/views/accessibility/native_view_accessibility_mac.h" | 5 #include "ui/views/accessibility/native_view_accessibility_mac.h" |
| 6 | 6 |
| 7 #include <memory> | |
| 8 | |
| 9 #include "base/memory/ptr_util.h" | |
| 10 #include "ui/views/view.h" | 7 #include "ui/views/view.h" |
| 11 #include "ui/views/widget/widget.h" | 8 #include "ui/views/widget/widget.h" |
| 12 | 9 |
| 13 namespace views { | 10 namespace views { |
| 14 | 11 |
| 15 // static | 12 // static |
| 16 std::unique_ptr<NativeViewAccessibility> NativeViewAccessibility::Create( | 13 NativeViewAccessibility* NativeViewAccessibility::Create(View* view) { |
| 17 View* view) { | 14 return new NativeViewAccessibilityMac(view); |
| 18 return base::MakeUnique<NativeViewAccessibilityMac>(view); | |
| 19 } | 15 } |
| 20 | 16 |
| 21 NativeViewAccessibilityMac::NativeViewAccessibilityMac(View* view) | 17 NativeViewAccessibilityMac::NativeViewAccessibilityMac(View* view) |
| 22 : NativeViewAccessibility(view) {} | 18 : NativeViewAccessibility(view) {} |
| 23 | 19 |
| 24 gfx::NativeViewAccessible NativeViewAccessibilityMac::GetParent() { | 20 gfx::NativeViewAccessible NativeViewAccessibilityMac::GetParent() { |
| 25 if (view_->parent()) | 21 if (view_->parent()) |
| 26 return view_->parent()->GetNativeViewAccessible(); | 22 return view_->parent()->GetNativeViewAccessible(); |
| 27 | 23 |
| 28 if (view_->GetWidget()) | 24 if (view_->GetWidget()) |
| 29 return view_->GetWidget()->GetNativeView(); | 25 return view_->GetWidget()->GetNativeView(); |
| 30 | 26 |
| 31 if (parent_widget_) | 27 if (parent_widget_) |
| 32 return parent_widget_->GetRootView()->GetNativeViewAccessible(); | 28 return parent_widget_->GetRootView()->GetNativeViewAccessible(); |
| 33 | 29 |
| 34 return nullptr; | 30 return nullptr; |
| 35 } | 31 } |
| 36 | 32 |
| 37 } // namespace views | 33 } // namespace views |
| OLD | NEW |