| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 class CallStackFormatType(object): | 6 class CallStackFormatType(object): |
| 7 JAVA = 1 | 7 JAVA = 1 |
| 8 SYZYASAN = 2 | 8 SYZYASAN = 2 |
| 9 DEFAULT = 3 | 9 DEFAULT = 3 |
| 10 | 10 |
| 11 | 11 |
| 12 class CallStackLanguageType(object): | 12 class CallStackLanguageType(object): |
| 13 CPP = 1 | 13 CPP = 1 |
| 14 JAVA = 2 | 14 JAVA = 2 |
| 15 |
| 16 |
| 17 class CrashClient(object): |
| 18 FRACAS = 'fracas' |
| 19 CRACAS = 'cracas' |
| 20 CLUSTERFUZZ = 'clusterfuzz' |
| OLD | NEW |