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

Side by Side Diff: tools/findit/result.py

Issue 478763003: [Findit] Bug fixing and implemented some feature requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed codereview and removed all references to logging Created 6 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 class Result(object): 6 class Result(object):
7 7
8 def __init__(self, suspected_cl, revision_url, component_name, author, 8 def __init__(self, suspected_cl, revision_url, component_name, author,
9 reason, review_url, reviewers, line_content): 9 reason, review_url, reviewers, line_content, message):
10 self.suspected_cl = suspected_cl 10 self.suspected_cl = suspected_cl
11 self.revision_url = revision_url 11 self.revision_url = revision_url
12 self.component_name = component_name 12 self.component_name = component_name
13 self.author = author 13 self.author = author
14 self.reason = reason 14 self.reason = reason
15 self.review_url = review_url 15 self.review_url = review_url
16 self.reviewers = reviewers 16 self.reviewers = reviewers
17 self.line_content = line_content 17 self.line_content = line_content
18 self.commit_message = message
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698