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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py

Issue 2397573002: Don't track SCM changes in rebaseline commands. (Closed)
Patch Set: Rebased 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
index 76392e28977c282e3377fb97d2db441b18dfbd0a..9fc33ccd6d94d3071b3eb7e8c691a152874de9a5 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/scm_mock.py
@@ -40,6 +40,9 @@ class MockSCM(object):
self._executive = executive or MockExecutive()
self._local_commits = []
+ def add_all(self):
+ pass
qyearsley 2016/10/06 23:05:57 Note, I think it might be nice to actually make th
+
def add(self, destination_path, return_exit_code=False):
self.add_list([destination_path], return_exit_code)

Powered by Google App Engine
This is Rietveld 408576698