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

Unified Diff: client/crashpad_info.cc

Issue 1126413008: win: Implement exception snapshot (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: tidy Created 5 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: client/crashpad_info.cc
diff --git a/client/crashpad_info.cc b/client/crashpad_info.cc
index b1b1f216958ed7a82cab45693345fe9a61c2b34b..aff0187377c2b3b6b5d1105072d71fdd3da386d0 100644
--- a/client/crashpad_info.cc
+++ b/client/crashpad_info.cc
@@ -89,7 +89,12 @@ CrashpadInfo::CrashpadInfo()
crashpad_handler_behavior_(TriState::kUnset),
system_crash_reporter_forwarding_(TriState::kUnset),
padding_0_(0),
- simple_annotations_(nullptr) {
+ simple_annotations_(nullptr),
Mark Mentovai 2015/08/18 16:17:19 This comma isn’t going to work on non-Windows, it’
scottmg 2015/08/18 16:56:00 Done.
+#if defined(OS_WIN)
+ thread_id_(0),
+ exception_pointers_(nullptr)
+#endif // OS_WIN
+{
}
} // namespace crashpad

Powered by Google App Engine
This is Rietveld 408576698