#include "ui/accessibility/ax_tree_update.h"
#include "base/strings/string_number_conversions.h"
#include "ui/accessibility/ax_enum_util.h"
#include "ui/accessibility/ax_tree_checks.h"
#include "ui/accessibility/ax_tree_data.h"
namespace ui {
AXTreeUpdate::AXTreeUpdate() = default;
AXTreeUpdate::AXTreeUpdate(AXTreeUpdate&& other) = default;
AXTreeUpdate& AXTreeUpdate::operator=(AXTreeUpdate&& other) = default;
AXTreeUpdate::AXTreeUpdate(const AXTreeUpdate& other) = default;
AXTreeUpdate& AXTreeUpdate::operator=(const AXTreeUpdate& other) = default;
AXTreeUpdate::~AXTreeUpdate() = default;
std::string AXTreeUpdate::ToString(bool verbose) const { … }
size_t AXTreeUpdate::ByteSize() const { … }
void AXTreeUpdate::AccumulateSize(
AXNodeData::AXNodeDataSize& node_data_size) const { … }
}