| Index: appengine/findit/lib/gitiles/change_log.py
|
| diff --git a/appengine/findit/lib/gitiles/change_log.py b/appengine/findit/lib/gitiles/change_log.py
|
| index c56c8ec6e20267b6a147e6fc598f6a70cebfe938..b14c93f03b1f6da63bcf21d49bfc353a394d8b8a 100644
|
| --- a/appengine/findit/lib/gitiles/change_log.py
|
| +++ b/appengine/findit/lib/gitiles/change_log.py
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +# TODO(http://crbug.com/661822): convert this into a namedtuple.
|
| class FileChangeInfo(object):
|
| """Represents a file change (add/delete/modify/rename/copy/etc)."""
|
| def __init__(self, change_type, old_path, new_path):
|
| @@ -22,6 +23,7 @@ class FileChangeInfo(object):
|
| info['change_type'], info['old_path'], info['new_path'])
|
|
|
|
|
| +# TODO(http://crbug.com/661822): convert this into a namedtuple.
|
| class ChangeLog(object):
|
| """Represents the change log of a revision."""
|
|
|
|
|