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

Unified Diff: content/renderer/render_view.cc

Issue 7867018: Add routing id and notification type to accessibility logging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: indent. Created 9 years, 3 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
« no previous file with comments | « no previous file | webkit/glue/webaccessibility.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view.cc
diff --git a/content/renderer/render_view.cc b/content/renderer/render_view.cc
index de09b3e397b07a85f4b917527705e8d4546ec424..0966b25b4807eb166bf78ccb80cdc5c288636081 100644
--- a/content/renderer/render_view.cc
+++ b/content/renderer/render_view.cc
@@ -1603,8 +1603,10 @@ void RenderView::SendPendingAccessibilityNotifications() {
#ifndef NDEBUG
if (accessibility_logging_) {
- LOG(INFO) << "Accessibility update: \n"
- << param.acc_obj.DebugString(true);
+ LOG(INFO) << "Accessibility update:\n"
+ << param.acc_obj.DebugString(true,
+ routing_id_,
+ pending_accessibility_notifications_[i].type);
}
#endif
}
« no previous file with comments | « no previous file | webkit/glue/webaccessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698