|
|
Move some accessibility interfaces into the content/public API.
To facilitate creating the necessary APIs for a chrome://accessibility page, move some accessibility-related methods into the content/public API:
- Promote Get/SetAccessibilityMode() from RenderWidgetHostImpl into RenderWidgetHost, and move the AccessibilityMode enum from view_message_enums.h into its own file in content/public/common
- Promote Get/SetAccessibilityMode() from BrowserAccessibilityStateImpl into BrowserAccessibilityState (this is the global accessibility state, as opposed to the per-renderer state in RenderWidgetHost)
- Create a public interface for what was previous called DumpAccessibilityTreeHelper, now called AccessibilityTreeFormatter
BUG= 178756
Total comments: 6
Total comments: 10
Total comments: 7
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+295 lines, -918 lines) |
Patch |
 |
M |
chrome/browser/chrome_browser_application_mac.mm
|
View
|
1
2
3
4
5
6
7
8
10
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
A + |
content/browser/accessibility/accessibility_tree_formatter_impl.h
|
View
|
1
2
3
4
5
6
7
|
5 chunks |
+21 lines, -19 lines |
0 comments
|
Download
|
 |
A |
content/browser/accessibility/accessibility_tree_formatter_impl.cc
|
View
|
1
2
3
4
5
6
|
1 chunk |
+111 lines, -0 lines |
0 comments
|
Download
|
 |
A + |
content/browser/accessibility/accessibility_tree_formatter_impl_mac.mm
|
View
|
1
2
3
4
|
3 chunks |
+13 lines, -10 lines |
0 comments
|
Download
|
 |
A + |
content/browser/accessibility/accessibility_tree_formatter_impl_win.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
3 chunks |
+14 lines, -9 lines |
0 comments
|
Download
|
 |
A + |
content/browser/accessibility/accessibility_tree_formatter_utils_win.h
|
View
|
1
2
3
4
5
6
7
8
9
|
0 chunks |
+-1 lines, --1 lines |
0 comments
|
Download
|
 |
A + |
content/browser/accessibility/accessibility_tree_formatter_utils_win.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/accessibility_win_browsertest.cc
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+1 line, -1 line |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/browser_accessibility_state_impl.h
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/browser_accessibility_state_impl.cc
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+6 lines, -6 lines |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/cross_platform_accessibility_browsertest.cc
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/dump_accessibility_tree_browsertest.cc
|
View
|
1
2
3
4
5
6
7
8
|
8 chunks |
+21 lines, -19 lines |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/dump_accessibility_tree_helper.h
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -98 lines |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/dump_accessibility_tree_helper.cc
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -89 lines |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/dump_accessibility_tree_helper_mac.mm
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -139 lines |
0 comments
|
Download
|
 |
M |
content/browser/accessibility/dump_accessibility_tree_helper_win.cc
|
View
|
1
2
3
4
|
1 chunk |
+0 lines, -185 lines |
0 comments
|
Download
|
 |
M |
content/browser/renderer_host/render_widget_host_impl.h
|
View
|
1
2
3
4
5
6
7
|
4 chunks |
+8 lines, -4 lines |
0 comments
|
Download
|
 |
M |
content/browser/renderer_host/render_widget_host_impl.cc
|
View
|
1
2
3
4
5
6
7
|
3 chunks |
+5 lines, -4 lines |
0 comments
|
Download
|
 |
M |
content/common/view_message_enums.h
|
View
|
1
2
3
|
1 chunk |
+0 lines, -15 lines |
0 comments
|
Download
|
 |
M |
content/common/view_messages.h
|
View
|
1
2
3
4
5
6
7
|
4 chunks |
+4 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/content_browser.gypi
|
View
|
1
2
3
4
5
6
7
8
9
|
3 chunks |
+11 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/content_common.gypi
|
View
|
1
2
3
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
content/content_tests.gypi
|
View
|
1
2
3
4
5
6
7
8
9
|
4 chunks |
+0 lines, -10 lines |
0 comments
|
Download
|
 |
A |
content/public/browser/accessibility_tree_formatter.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+27 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/browser/browser_accessibility_state.h
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
content/public/browser/render_widget_host.h
|
View
|
1
2
3
4
5
6
7
|
2 chunks |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
A |
content/public/common/accessibility_mode.h
|
View
|
1
2
3
4
5
6
7
8
|
1 chunk |
+27 lines, -0 lines |
0 comments
|
Download
|
 |
D |
content/public/test/accessibility_test_utils_win.h
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+0 lines, -26 lines |
0 comments
|
Download
|
 |
D |
content/public/test/accessibility_test_utils_win.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+0 lines, -268 lines |
0 comments
|
Download
|
 |
M |
content/public/test/render_view_test.cc
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
content/renderer/accessibility/renderer_accessibility_browsertest.cc
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
content/renderer/accessibility/renderer_accessibility_complete.h
|
View
|
1
2
3
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
content/renderer/render_view_impl.h
|
View
|
1
2
3
4
5
6
7
8
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
content/renderer/render_view_impl.cc
|
View
|
1
2
3
4
5
6
7
8
|
3 chunks |
+4 lines, -3 lines |
0 comments
|
Download
|
 |
M |
content/renderer/render_view_impl_params.h
|
View
|
1
2
3
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
Total messages: 17 (0 generated)
|