Chromium Code Reviews| Index: ui/views/accessibility/native_view_accessibility_stub.cc |
| diff --git a/ui/views/accessibility/native_view_accessibility_stub.cc b/ui/views/accessibility/native_view_accessibility_stub.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3c4cda262a90d3d123cc17ddae59291e69ae437a |
| --- /dev/null |
| +++ b/ui/views/accessibility/native_view_accessibility_stub.cc |
| @@ -0,0 +1,15 @@ |
| +// Copyright 2017 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.h" |
| + |
| +namespace views { |
| + |
| +// static |
| +std::unique_ptr<NativeViewAccessibility> NativeViewAccessibility::Create( |
| + View* view) { |
| + return nullptr; |
| +} |
| + |
| +} // namespace views |