| 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 from google.appengine.ext import ndb |
| 6 |
| 7 from model.crash.crash_analysis import CrashAnalysis |
| 8 |
| 9 |
| 10 class ChromeCrashAnalysis(CrashAnalysis): |
| 11 """Represents an analysis of a Chrome Crash (Cracas or Fracas).""" |
| 12 # Customized properties for Fracas crash. |
| 13 historical_metadata = ndb.JsonProperty(indexed=False) |
| 14 channel = ndb.StringProperty(indexed=False) |
| 15 |
| 16 def Reset(self): |
| 17 super(ChromeCrashAnalysis, self).Reset() |
| 18 self.historical_metadata = None |
| 19 self.channel = None |
| OLD | NEW |