Demonstrate the basic functionality of the File System
[chromium-blink-merge.git] / ui / views / accessibility / native_view_accessibility.cc
blob577ecfa41c22732485b5708f6786445d370e49a0
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.
5 #include "ui/views/accessibility/native_view_accessibility.h"
7 namespace views {
9 #if !defined(OS_WIN)
10 // static
11 NativeViewAccessibility* NativeViewAccessibility::Create(View* view) {
12 return NULL;
14 #endif
16 NativeViewAccessibility::NativeViewAccessibility() {
19 NativeViewAccessibility::~NativeViewAccessibility() {
22 gfx::NativeViewAccessible NativeViewAccessibility::GetNativeObject() {
23 return NULL;
26 void NativeViewAccessibility::Destroy() {
27 delete this;
30 #if !defined(OS_WIN)
31 // static
32 void NativeViewAccessibility::RegisterWebView(View* web_view) {
35 // static
36 void NativeViewAccessibility::UnregisterWebView(View* web_view) {
38 #endif
40 } // namespace views