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. | |
| 4 | |
| 5 import hashlib | |
| 6 import json | |
| 7 | |
| 8 from google.appengine.ext import ndb | |
| 9 | |
| 10 from model.crash.fracas_crash_analysis import FracasCrashAnalysis | |
| 11 | |
| 12 | |
| 13 class CracasCrashAnalysis(FracasCrashAnalysis): | |
|
Martin Barbella
2016/09/08 21:15:39
This doesn't seem clean to me, and I suspect even
Sharu Jiang
2016/09/08 22:18:52
We already have a base class - CrashAnalysis, the
| |
| 14 """Represents an analysis of a Chrome crash.""" | |
| 15 # TODO(katesonia): Deprecate FracasCrashAnalysis after switching from Fracas | |
| 16 # to Cracas. | |
| 17 pass | |
| OLD | NEW |