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

Unified Diff: content/browser/accessibility/accessibility_event_recorder_win.cc

Issue 884683003: Add more logging to track down flakiness (2). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@log_wm_getobject
Patch Set: Created 5 years, 11 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 | content/browser/accessibility/browser_accessibility_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/accessibility_event_recorder_win.cc
diff --git a/content/browser/accessibility/accessibility_event_recorder_win.cc b/content/browser/accessibility/accessibility_event_recorder_win.cc
index 86f021ea5ff5b29a051a392a50cf28964ba85afe..2425b03386c962c82c5d0af6f2c3b326e41eafaf 100644
--- a/content/browser/accessibility/accessibility_event_recorder_win.cc
+++ b/content/browser/accessibility/accessibility_event_recorder_win.cc
@@ -176,6 +176,9 @@ void AccessibilityEventRecorderWin::OnWinEventHook(
// don't care about, so it's safe to just ignore these failures.
// Same below for other HRESULT checks.
LOG(INFO) << "Ignoring result " << hr << " from AccessibleObjectFromWindow";
+ TCHAR name[MAX_PATH];
+ GetClassName(hwnd, name, _countof(name));
+ LOG(INFO) << "Hwnd " << hwnd << " class is " << name;
return;
}
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698