Kevin Babbitt | 9e19386 | 2020-04-28 17:02:31 | [diff] [blame] | 1 | // 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 | |
| 11 | namespace content { |
| 12 | |
| 13 | // Returns true if page scale factor should be included in the transform on the |
| 14 | // root node of the AX tree. |
| 15 | bool AXShouldIncludePageScaleFactorInRoot(); |
| 16 | |
| 17 | } // namespace content |
| 18 | |
| 19 | #endif // CONTENT_COMMON_AX_SERIALIZATION_UTILS_H_ |