Index: ui/views/accessibility/native_view_accessibility_mac.mm |
diff --git a/ui/views/accessibility/native_view_accessibility_mac.mm b/ui/views/accessibility/native_view_accessibility_mac.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6e6367da85516daafe6dd19a1a4971d8be4ace93 |
--- /dev/null |
+++ b/ui/views/accessibility/native_view_accessibility_mac.mm |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 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/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 |