Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: content/public/browser/accessibility_tree_formatter.h

Issue 12335101: Move some accessibility methods, enums and interfaces into the content/public API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove #include which crept back in" Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/browser_accessibility_state.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 #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_
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/public/browser/browser_accessibility_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698