Fix some nits from the two previous plugin power saver CLs.
[chromium-blink-merge.git] / tools / findit / result.py
blob360a69bb6be0d43386bfc5127212c260fe45cfca
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.
6 class Result(object):
8 def __init__(self, suspected_cl, revision_url, component_name, author,
9 reason, review_url, reviewers, line_content, message, time):
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 self.time = time