summaryrefslogtreecommitdiff
path: root/chromium/ui/accessibility/ax_serializable_tree.h
blob: d8fb9c45161e475ecbe8b734e74f46ae5e072682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_ACCESSIBILITY_AX_SERIALIZABLE_TREE_H_
#define UI_ACCESSIBILITY_AX_SERIALIZABLE_TREE_H_

#include "ui/accessibility/ax_tree.h"
#include "ui/accessibility/ax_tree_source.h"

namespace ui {

class AX_EXPORT AXSerializableTree : public AXTree {
 public:
  AXSerializableTree();
  explicit AXSerializableTree(
      const AXTreeUpdate& initial_state);
  ~AXSerializableTree() override;

  // Create a TreeSource adapter for this tree. The client gets ownership
  // of the return value and should delete it when done.
  virtual AXTreeSource<const AXNode*, AXNodeData, AXTreeData>*
      CreateTreeSource();
};

}  // namespace ui

#endif  // UI_ACCESSIBILITY_AX_TREE_H_