- add sources.
[platform/framework/web/crosswalk.git] / src / ui / views / accessibility / native_view_accessibility.cc
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
11 NativeViewAccessibility* NativeViewAccessibility::Create(View* view) {
12   return NULL;
13 }
14 #endif
15
16 NativeViewAccessibility::NativeViewAccessibility() {
17 }
18
19 NativeViewAccessibility::~NativeViewAccessibility() {
20 }
21
22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() {
23   return NULL;
24 }
25
26 void NativeViewAccessibility::Destroy() {
27   delete this;
28 }
29
30 #if !defined(OS_WIN)
31 // static
32 void NativeViewAccessibility::RegisterWebView(View* web_view) {
33 }
34
35 // static
36 void NativeViewAccessibility::UnregisterWebView(View* web_view) {
37 }
38 #endif
39
40 }  // namespace views