| Index: ui/views_core/accessibility/native_view_accessibility_mac.mm
|
| diff --git a/ui/views_core/accessibility/native_view_accessibility_mac.mm b/ui/views_core/accessibility/native_view_accessibility_mac.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6e1ac395ee4ed75a0ca3259379feab62729428f7
|
| --- /dev/null
|
| +++ b/ui/views_core/accessibility/native_view_accessibility_mac.mm
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ui/views_core/accessibility/native_view_accessibility_mac.h"
|
| +
|
| +namespace views {
|
| +
|
| +NativeViewAccessibilityMac::NativeViewAccessibilityMac(NSView* view)
|
| + : view_(view) {
|
| +}
|
| +
|
| +NativeViewAccessibilityMac::~NativeViewAccessibilityMac() {
|
| +}
|
| +
|
| +void NativeViewAccessibilityMac::NotifyAccessibilityEvent(
|
| + ui::AXEvent event_type) {
|
| +}
|
| +
|
| +gfx::NativeViewAccessible NativeViewAccessibilityMac::GetNativeObject() {
|
| + return view_;
|
| +}
|
| +
|
| +} // namespace views
|
|
|