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

Unified Diff: appengine/findit/model/crash/fracas_crash_analysis.py

Issue 1946513003: [Findit] Modify the handler for fracas input message. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: appengine/findit/model/crash/fracas_crash_analysis.py
diff --git a/appengine/findit/model/crash/fracas_crash_analysis.py b/appengine/findit/model/crash/fracas_crash_analysis.py
index 8ace4ee376b5ed22bd71bdfa03b7be94b008fa54..34912bda3f5b9bb5129bded051454255921d14a5 100644
--- a/appengine/findit/model/crash/fracas_crash_analysis.py
+++ b/appengine/findit/model/crash/fracas_crash_analysis.py
@@ -12,11 +12,11 @@ from model.crash.crash_analysis import CrashAnalysis
class FracasCrashAnalysis(CrashAnalysis):
"""Represents an analysis of a Chrome crash."""
# Data of crash per million page loads for each Chrome version.
- versions_to_cpm = ndb.JsonProperty(indexed=False)
+ versions_to_historical = ndb.JsonProperty(indexed=False)
def Reset(self):
super(FracasCrashAnalysis, self).Reset()
- self.versions_to_cpm = None
+ self.versions_to_historical = None
@ndb.ComputedProperty
def channel(self):

Powered by Google App Engine
This is Rietveld 408576698