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

Side by Side Diff: appengine/findit/crash/type_enums.py

Issue 2299883005: [Findit] Add findit_for_client to do analysis based on client_id (Closed)
Patch Set: Rebase. Created 4 years, 3 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 unified diff | Download patch
OLDNEW
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'
OLDNEW
« no previous file with comments | « appengine/findit/crash/test/findit_for_fracas_test.py ('k') | appengine/findit/handlers/crash/crash_handler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698