Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
|
jam
2013/02/27 19:35:50
why is this in the public api? i don't see it call
aboxhall
2013/02/27 21:19:59
It isn't yet, but it will be once the chrome://acc
jam
2013/02/27 22:51:32
you can now implement webui pages inside content (
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_ACCESSIBILITY_TREE_FORMATTER_H_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_ACCESSIBILITY_TREE_FORMATTER_H_ | |
| 7 | |
| 8 #include "base/string16.h" | |
| 9 | |
| 10 namespace content { | |
| 11 | |
| 12 class RenderViewHost; | |
| 13 | |
| 14 class AccessibilityTreeFormatter { | |
| 15 public: | |
| 16 virtual ~AccessibilityTreeFormatter() {} | |
| 17 | |
| 18 static AccessibilityTreeFormatter* Create(RenderViewHost* rvh); | |
| 19 | |
| 20 // Formats the browser accessibility tree for this render view host into | |
| 21 // a string. | |
| 22 virtual void FormatAccessibilityTree(string16* contents) = 0; | |
| 23 }; | |
| 24 | |
| 25 } // namespace content | |
| 26 | |
| 27 #endif // CONTENT_PUBLIC_BROWSER_ACCESSIBILITY_TREE_FORMATTER_H_ | |
| OLD | NEW |