Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
|
lijeffrey
2016/08/09 04:14:47
nit: how about name this file analysis_approach_ty
| |
| 4 | |
| 5 | |
| 6 # Represents the type of approach. | |
| 7 HEURISTIC = 0x00 | |
| 8 TRY_JOB = 0x01 | |
| 9 BOTH = 0x08 | |
| 10 | |
| 11 STATUS_TO_DESCRIPTION = { | |
| 12 HEURISTIC: 'Heuristic', | |
| 13 TRY_JOB: 'Try Job', | |
| 14 BOTH: 'Both' | |
| 15 } | |
| OLD | NEW |