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

Unified Diff: content/browser/renderer_host/render_view_host.cc

Issue 7745035: Add a big grab bag of missing web accessibility functionality... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_view_host.cc
===================================================================
--- content/browser/renderer_host/render_view_host.cc (revision 98804)
+++ content/browser/renderer_host/render_view_host.cc (working copy)
@@ -1267,9 +1267,7 @@
for (unsigned i = 0; i < params.size(); i++) {
const ViewHostMsg_AccessibilityNotification_Params& param = params[i];
- if (param.notification_type ==
- ViewHostMsg_AccessibilityNotification_Type::
- NOTIFICATION_TYPE_LOAD_COMPLETE) {
+ if (param.notification_type == ViewHostMsg_AccEvent::LOAD_COMPLETE) {
Chris Guillory 2011/08/31 02:14:53 We can combine these two if statements now.
dmazzoni 2011/08/31 22:02:54 Done.
if (save_accessibility_tree_for_testing_)
accessibility_tree_ = param.acc_obj;
}

Powered by Google App Engine
This is Rietveld 408576698