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

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: Add conversion from int to string. 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') | webkit/glue/webaccessibility.cc » ('J')
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..26eb8e270d847f0278ffc50fec1462f8326ad9f8 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_,
+ param.notification_type);
}
#endif
}
« no previous file with comments | « no previous file | webkit/glue/webaccessibility.h » ('j') | webkit/glue/webaccessibility.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698