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

Unified Diff: chrome/app/chrome_crash_reporter_client_win.cc

Issue 2514483002: Add a crash key to record whether a windows machine is domain joined. (Closed)
Patch Set: Add key to 2 other places. Created 4 years 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: chrome/app/chrome_crash_reporter_client_win.cc
diff --git a/chrome/app/chrome_crash_reporter_client_win.cc b/chrome/app/chrome_crash_reporter_client_win.cc
index ac089d5373a24ceac726b49b35c4d72ef104e7ea..fdf265984bfa9a343af6d80a43c5dd395a0468ff 100644
--- a/chrome/app/chrome_crash_reporter_client_win.cc
+++ b/chrome/app/chrome_crash_reporter_client_win.cc
@@ -58,6 +58,8 @@ constexpr char kInputEventFilterSendFailure[] =
constexpr char kThirdPartyModulesLoaded[] = "third-party-modules-loaded";
constexpr char kThirdPartyModulesNotLoaded[] = "third-party-modules-not-loaded";
+constexpr char kEnrolledToDomain[] = "enrolled-to-domain";
+
constexpr char kViewCount[] = "view-count";
constexpr char kZeroEncodeDetails[] = "zero-encode-details";
@@ -103,6 +105,7 @@ size_t RegisterCrashKeysHelper() {
// browser/:
{kThirdPartyModulesLoaded, kSmallSize},
{kThirdPartyModulesNotLoaded, kSmallSize},
+ {kEnrolledToDomain, kSmallSize},
// content/:
{"bad_message_reason", kSmallSize},

Powered by Google App Engine
This is Rietveld 408576698