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

Unified Diff: chrome/common/crash_keys.cc

Issue 2581353002: Use the Windows MDM API to check if the machine is being managed. (Closed)
Patch Set: rebased Created 3 years, 10 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: chrome/common/crash_keys.cc
diff --git a/chrome/common/crash_keys.cc b/chrome/common/crash_keys.cc
index f370fd877a2080df3c5162ff926f2670a1c68ade..fe3830b3290308e47bed4a5c1bce7dc5a9b13755 100644
--- a/chrome/common/crash_keys.cc
+++ b/chrome/common/crash_keys.cc
@@ -58,7 +58,7 @@ const char kHungRendererReason[] = "hung-reason";
const char kThirdPartyModulesLoaded[] = "third-party-modules-loaded";
const char kThirdPartyModulesNotLoaded[] = "third-party-modules-not-loaded";
-const char kEnrolledToDomain[] = "enrolled-to-domain";
+const char kIsEnterpriseManaged[] = "is-enterprise-managed";
#endif
const char kInputEventFilterSendFailure[] = "input-event-filter-send-failure";
@@ -145,7 +145,7 @@ size_t RegisterChromeCrashKeys() {
{ kHungRendererReason, kSmallSize },
{ kThirdPartyModulesLoaded, kSmallSize },
{ kThirdPartyModulesNotLoaded, kSmallSize },
- { kEnrolledToDomain, kSmallSize },
+ { kIsEnterpriseManaged, kSmallSize },
#endif
{ kInputEventFilterSendFailure, kSmallSize },
#if defined(OS_CHROMEOS)

Powered by Google App Engine
This is Rietveld 408576698