summaryrefslogtreecommitdiffstats
path: root/sandbox/win
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-28 05:54:54 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-28 05:54:54 +0000
commit2b100dfe32fcbfd8b1614b74ead9f5f24a7d81e2 (patch)
treea16b46d8436d17fb57fcea3b225f1a92383f28dd /sandbox/win
parentfa746f3cd1810ddb6b62d07182b499627f827943 (diff)
downloadchromium_src-2b100dfe32fcbfd8b1614b74ead9f5f24a7d81e2.zip
chromium_src-2b100dfe32fcbfd8b1614b74ead9f5f24a7d81e2.tar.gz
chromium_src-2b100dfe32fcbfd8b1614b74ead9f5f24a7d81e2.tar.bz2
Add extra buckets to CrashExitCodes histogram for sandbox terminations.
BUG=152814 Review URL: https://chromiumcodereview.appspot.com/10981061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@159215 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/win')
-rw-r--r--sandbox/win/src/sandbox_types.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sandbox/win/src/sandbox_types.h b/sandbox/win/src/sandbox_types.h
index 8e9aef2..48f1b61 100644
--- a/sandbox/win/src/sandbox_types.h
+++ b/sandbox/win/src/sandbox_types.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -57,7 +57,8 @@ enum TerminationCodes {
SBOX_FATAL_FLUSHANDLES = 7008, // Failed to flush registry handles.
SBOX_FATAL_CACHEDISABLE = 7009, // Failed to forbid HCKU caching.
SBOX_FATAL_CLOSEHANDLES = 7010, // Failed to close pending handles.
- SBOX_FATAL_MITIGATION = 7011 // Could not set the mitigation policy.
+ SBOX_FATAL_MITIGATION = 7011, // Could not set the mitigation policy.
+ SBOX_FATAL_LAST
};
class BrokerServices;