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

Unified Diff: chrome/browser/accessibility/browser_accessibility_win_unittest.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: chrome/browser/accessibility/browser_accessibility_win_unittest.cc
===================================================================
--- chrome/browser/accessibility/browser_accessibility_win_unittest.cc (revision 98956)
+++ chrome/browser/accessibility/browser_accessibility_win_unittest.cc (working copy)
@@ -192,9 +192,7 @@
// Notify the BrowserAccessibilityManager that the text child has changed.
text.name = L"new text";
ViewHostMsg_AccessibilityNotification_Params param;
- param.notification_type =
- ViewHostMsg_AccessibilityNotification_Type::
- NOTIFICATION_TYPE_CHILDREN_CHANGED;
+ param.notification_type = ViewHostMsg_AccEvent::CHILDREN_CHANGED;
param.acc_obj = text;
std::vector<ViewHostMsg_AccessibilityNotification_Params> notifications;
notifications.push_back(param);
@@ -264,9 +262,7 @@
// were removed and ensure that only one BrowserAccessibility instance exists.
root.children.clear();
ViewHostMsg_AccessibilityNotification_Params param;
- param.notification_type =
- ViewHostMsg_AccessibilityNotification_Type::
- NOTIFICATION_TYPE_CHILDREN_CHANGED;
+ param.notification_type = ViewHostMsg_AccEvent::CHILDREN_CHANGED;
param.acc_obj = root;
std::vector<ViewHostMsg_AccessibilityNotification_Params> notifications;
notifications.push_back(param);

Powered by Google App Engine
This is Rietveld 408576698