OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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.h" | 5 #include "ui/views/accessibility/native_view_accessibility.h" |
6 | 6 |
7 namespace views { | 7 namespace views { |
8 | 8 |
9 #if !defined(OS_WIN) | 9 #if !defined(OS_WIN) |
10 // static | 10 // static |
(...skipping 11 matching lines...) Expand all Loading... |
22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() { | 22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() { |
23 return NULL; | 23 return NULL; |
24 } | 24 } |
25 | 25 |
26 void NativeViewAccessibility::Destroy() { | 26 void NativeViewAccessibility::Destroy() { |
27 delete this; | 27 delete this; |
28 } | 28 } |
29 | 29 |
30 #if !defined(OS_WIN) | 30 #if !defined(OS_WIN) |
31 // static | 31 // static |
32 void NativeViewAccessibility::RegisterWebView(AccessibleWebView* web_view) { | 32 void NativeViewAccessibility::RegisterWebView(View* web_view) { |
33 } | 33 } |
34 | 34 |
35 // static | 35 // static |
36 void NativeViewAccessibility::UnregisterWebView(AccessibleWebView* web_view) { | 36 void NativeViewAccessibility::UnregisterWebView(View* web_view) { |
37 } | 37 } |
38 #endif | 38 #endif |
39 | 39 |
40 } // namespace views | 40 } // namespace views |
OLD | NEW |