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

Unified Diff: dashboard/dashboard/pinpoint/models/quest/read_value.py

Issue 3001163002: Pinpoint - Surface info from executions for display in UI. (Closed)
Patch Set: Rebase again. Created 3 years, 4 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: dashboard/dashboard/pinpoint/models/quest/read_value.py
diff --git a/dashboard/dashboard/pinpoint/models/quest/read_value.py b/dashboard/dashboard/pinpoint/models/quest/read_value.py
index b06eeef598bac341e9048edbd2d6c8ef20ce962d..bb0078e213505a0e344a5691f1ab1ae1a36248d8 100644
--- a/dashboard/dashboard/pinpoint/models/quest/read_value.py
+++ b/dashboard/dashboard/pinpoint/models/quest/read_value.py
@@ -36,6 +36,11 @@ class _ReadChartJsonValueExecution(execution.Execution):
self._test = test or 'summary'
self._isolate_hashes = isolate_hashes
+ def _AsDict(self):
+ return {
+ 'isolate_hash': self._isolate_hash
+ }
+
def _Poll(self):
result_values = []
@@ -97,6 +102,11 @@ class _ReadGraphJsonValueExecution(execution.Execution):
self._trace = trace
self._isolate_hashes = isolate_hashes
+ def _AsDict(self):
+ return {
+ 'isolate_hash': self._isolate_hash
+ }
+
def _Poll(self):
result_values = []
« no previous file with comments | « dashboard/dashboard/pinpoint/models/quest/find_isolate_test.py ('k') | dashboard/dashboard/pinpoint/models/quest/run_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698