• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 // found in the LICENSE file.
4 
5 #include "ui/views/accessibility/native_view_accessibility.h"
6 
7 namespace views {
8 
9 #if !defined(OS_WIN)
10 // static
Create(View * view)11 NativeViewAccessibility* NativeViewAccessibility::Create(View* view) {
12   return NULL;
13 }
14 #endif
15 
NativeViewAccessibility()16 NativeViewAccessibility::NativeViewAccessibility() {
17 }
18 
~NativeViewAccessibility()19 NativeViewAccessibility::~NativeViewAccessibility() {
20 }
21 
GetNativeObject()22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() {
23   return NULL;
24 }
25 
Destroy()26 void NativeViewAccessibility::Destroy() {
27   delete this;
28 }
29 
30 #if !defined(OS_WIN)
31 // static
RegisterWebView(View * web_view)32 void NativeViewAccessibility::RegisterWebView(View* web_view) {
33 }
34 
35 // static
UnregisterWebView(View * web_view)36 void NativeViewAccessibility::UnregisterWebView(View* web_view) {
37 }
38 #endif
39 
40 }  // namespace views
41