chromium/ui/accessibility/ax_text_attributes.h

// 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_AX_TEXT_ATTRIBUTES_H_
#define UI_ACCESSIBILITY_AX_TEXT_ATTRIBUTES_H_

#include <string>
#include <vector>

#include "ui/accessibility/ax_base_export.h"
#include "ui/accessibility/ax_enums.mojom-shared.h"

namespace ui {

// A compact representation of text attributes, such as spelling markers and
// style information, on an `AXNode`. This data represents a snapshot at a given
// time and is not intended to be held for periods of time. For this reason, it
// is a move-only class, to encourage deliberate short-term usage.
struct AX_BASE_EXPORT AXTextAttributes final {};

}  // namespace ui

#endif  // UI_ACCESSIBILITY_AX_TEXT_ATTRIBUTES_H_