Chromium Code Reviews| Index: content/public/browser/accessibility_tree_formatter.h |
| diff --git a/content/public/browser/accessibility_tree_formatter.h b/content/public/browser/accessibility_tree_formatter.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1de5b41f242f8ce8807c32f5957630f337e0bfa5 |
| --- /dev/null |
| +++ b/content/public/browser/accessibility_tree_formatter.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright (c) 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 CONTENT_PUBLIC_BROWSER_ACCESSIBILITY_TREE_FORMATTER_H_ |
| +#define CONTENT_PUBLIC_BROWSER_ACCESSIBILITY_TREE_FORMATTER_H_ |
| + |
| +#include "base/string16.h" |
| + |
| +namespace content { |
| + |
| +class RenderViewHost; |
| + |
| +class AccessibilityTreeFormatter { |
| + public: |
| + virtual ~AccessibilityTreeFormatter() {} |
| + |
| + static AccessibilityTreeFormatter* Create(RenderViewHost* rvh); |
| + |
| + // Formats the BrowserAccessibility tree for this render view host into |
|
dmazzoni
2013/02/27 16:41:01
BrowserAccessibility -> browser accessibility (sin
aboxhall
2013/02/27 18:58:50
Done.
|
| + // a string. |
| + virtual void FormatAccessibilityTree(string16* contents) = 0; |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_PUBLIC_BROWSER_ACCESSIBILITY_TREE_FORMATTER_H_ |