1# Copyright (c) 2014 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 6class Result(object): 7 8 def __init__(self, suspected_cl, revision_url, component_name, author, 9 reason, review_url, reviewers, line_content, message): 10 self.suspected_cl = suspected_cl 11 self.revision_url = revision_url 12 self.component_name = component_name 13 self.author = author 14 self.reason = reason 15 self.review_url = review_url 16 self.reviewers = reviewers 17 self.line_content = line_content 18 self.commit_message = message 19