| Index: tools/findit/result.py
|
| diff --git a/tools/findit/result.py b/tools/findit/result.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5f5a3dcae797b58a3bee4da2c4e2d61d7bd94a59
|
| --- /dev/null
|
| +++ b/tools/findit/result.py
|
| @@ -0,0 +1,17 @@
|
| +# Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +
|
| +class Result(object):
|
| +
|
| + def __init__(self, suspected_cl, revision_url, component_name, author,
|
| + reason, review_url, reviewers, line_content):
|
| + self.suspected_cl = suspected_cl
|
| + self.suspected_cl_revision_url = revision_url
|
| + self.component_name = component_name
|
| + self.author = author
|
| + self.reason = reason
|
| + self.review_url = review_url
|
| + self.reviewers = reviewers
|
| + self.line_content = line_content
|
|
|