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

Unified Diff: appengine/findit/lib/gitiles/change_log.py

Issue 2455053004: Moving ScheduleNewAnalysis to break the cycle (Closed)
Patch Set: rebase Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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."""

Powered by Google App Engine
This is Rietveld 408576698