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

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

Issue 23651003: Use Blink accessibility enums in Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compile errors Created 7 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_widget_host_view_win.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_win.cc b/content/browser/renderer_host/render_widget_host_view_win.cc
index 2cca28fdb0416c6bc668c8db8e680e476bf8e643..2863f451584721c490a96cd453bfabfb102b298f 100644
--- a/content/browser/renderer_host/render_widget_host_view_win.cc
+++ b/content/browser/renderer_host/render_widget_host_view_win.cc
@@ -2378,10 +2378,10 @@ LRESULT RenderWidgetHostViewWin::OnMoveOrSize(
return 0;
}
-void RenderWidgetHostViewWin::OnAccessibilityNotifications(
- const std::vector<AccessibilityHostMsg_NotificationParams>& params) {
+void RenderWidgetHostViewWin::OnAccessibilityEvents(
+ const std::vector<AccessibilityHostMsg_EventParams>& params) {
CreateBrowserAccessibilityManagerIfNeeded();
- GetBrowserAccessibilityManager()->OnAccessibilityNotifications(params);
+ GetBrowserAccessibilityManager()->OnAccessibilityEvents(params);
}
bool RenderWidgetHostViewWin::LockMouse() {

Powered by Google App Engine
This is Rietveld 408576698