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

Unified Diff: appengine/findit/common/diff.py

Issue 2344443005: [Findit] Factoring the gitiles (etc) stuff out into its own directory (Closed)
Patch Set: reordering imports Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/common/deps_parser.py ('k') | appengine/findit/common/git_repository.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/common/diff.py
diff --git a/appengine/findit/common/diff.py b/appengine/findit/common/diff.py
deleted file mode 100644
index ea8e4828ea6c64417626085dc1abba90c1dd4d7b..0000000000000000000000000000000000000000
--- a/appengine/findit/common/diff.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 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 ChangeType(object):
- ADD = 'add'
- DELETE = 'delete'
- MODIFY = 'modify'
- COPY = 'copy'
- RENAME = 'rename'
-
-
-def IsKnownChangeType(change_type):
- return change_type in [ChangeType.ADD, ChangeType.DELETE, ChangeType.MODIFY,
- ChangeType.COPY, ChangeType.RENAME]
« no previous file with comments | « appengine/findit/common/deps_parser.py ('k') | appengine/findit/common/git_repository.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698