Chromium Code Reviews| 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; |
| } |