// Copyright 2014 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_VIEWS_ACCESSIBILITY_AX_VIEW_OBJ_WRAPPER_H_ #define UI_VIEWS_ACCESSIBILITY_AX_VIEW_OBJ_WRAPPER_H_ #include <stdint.h> #include <string> #include <vector> #include "base/memory/raw_ptr.h" #include "base/scoped_observation.h" #include "ui/views/accessibility/ax_aura_obj_wrapper.h" #include "ui/views/view.h" #include "ui/views/view_observer.h" namespace views { class AXAuraObjCache; // Describes a |View| for use with other AX classes. class AXViewObjWrapper : public AXAuraObjWrapper, public ViewObserver { … }; } // namespace views #endif // UI_VIEWS_ACCESSIBILITY_AX_VIEW_OBJ_WRAPPER_H_