diff options
Diffstat (limited to 'chrome/common/crash_keys.cc')
-rw-r--r-- | chrome/common/crash_keys.cc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/chrome/common/crash_keys.cc b/chrome/common/crash_keys.cc new file mode 100644 index 0000000..55b0864 --- /dev/null +++ b/chrome/common/crash_keys.cc @@ -0,0 +1,26 @@ +// Copyright (c) 2013 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. + +#include "chrome/common/crash_keys.h" + +namespace crash_keys { + +namespace mac { + +const char kFirstNSException[] = "firstexception"; +const char kFirstNSExceptionTrace[] = "firstexception_bt"; + +const char kLastNSException[] = "lastexception"; +const char kLastNSExceptionTrace[] = "lastexception_bt"; + +const char kNSException[] = "nsexception"; + +const char kSendAction[] = "sendaction"; + +const char kZombie[] = "zombie"; +const char kZombieTrace[] = "zombie_dealloc_bt"; + +} // namespace mac + +} // namespace crash_keys |