| OLD | NEW |
| 1 # Copyright (c) 2010, Google Inc. All rights reserved. | 1 # Copyright (c) 2010, Google Inc. All rights reserved. |
| 2 # | 2 # |
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
| 4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
| 5 # met: | 5 # met: |
| 6 # | 6 # |
| 7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
| 8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
| 9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
| 10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 | 99 |
| 100 def __init__(self, parsed_json): | 100 def __init__(self, parsed_json): |
| 101 self._results = parsed_json | 101 self._results = parsed_json |
| 102 | 102 |
| 103 def run_was_interrupted(self): | 103 def run_was_interrupted(self): |
| 104 return self._results["interrupted"] | 104 return self._results["interrupted"] |
| 105 | 105 |
| 106 def builder_name(self): | 106 def builder_name(self): |
| 107 return self._results["builder_name"] | 107 return self._results["builder_name"] |
| 108 | 108 |
| 109 def blink_revision(self): | 109 def chromium_revision(self): |
| 110 return int(self._results["blink_revision"]) | 110 return int(self._results["chromium_revision"]) |
| 111 | 111 |
| 112 def actual_results(self, test): | 112 def actual_results(self, test): |
| 113 result = result_for_test(self._results["tests"], test) | 113 result = result_for_test(self._results["tests"], test) |
| 114 if result: | 114 if result: |
| 115 return result["actual"] | 115 return result["actual"] |
| 116 return "" | 116 return "" |
| OLD | NEW |