// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_NULL_AX_ACTION_TARGET_H_ #define UI_ACCESSIBILITY_NULL_AX_ACTION_TARGET_H_ #include "ui/accessibility/ax_action_target.h" #include "ui/accessibility/ax_export.h" namespace ui { // A do-nothing action target. class AX_EXPORT NullAXActionTarget : public AXActionTarget { … }; } // namespace ui #endif // UI_ACCESSIBILITY_NULL_AX_ACTION_TARGET_H_