blob: 3bbebac810a6d09b4c76e17502d0eb0bbc203c6b [file] [log] [blame]
Kevin Babbitt9e193862020-04-28 17:02:311// Copyright 2020 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Utilities to ensure that accessibility tree serialization and deserialization
6// logic is in sync.
7
8#ifndef CONTENT_COMMON_AX_SERIALIZATION_UTILS_H_
9#define CONTENT_COMMON_AX_SERIALIZATION_UTILS_H_
10
11namespace content {
12
13// Returns true if page scale factor should be included in the transform on the
14// root node of the AX tree.
15bool AXShouldIncludePageScaleFactorInRoot();
16
17} // namespace content
18
19#endif // CONTENT_COMMON_AX_SERIALIZATION_UTILS_H_