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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/style/main.py

Issue 2679173005: Rename Host.scm -> Host.git. (Closed)
Patch Set: Created 3 years, 10 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/style/main.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/style/main.py b/third_party/WebKit/Tools/Scripts/webkitpy/style/main.py
index 65efd0391ef0d283586d942bbea9b76d1ef2ff16..be966e32aae26bb83957de23b34e56ec2d6f0f22 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/style/main.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/style/main.py
@@ -140,7 +140,7 @@ class CheckWebKitStyle(object):
configuration = checker.check_webkit_style_configuration(options)
- paths = change_directory(host.filesystem, checkout_root=host.scm().checkout_root, paths=paths)
+ paths = change_directory(host.filesystem, checkout_root=host.git().checkout_root, paths=paths)
style_processor = StyleProcessor(configuration)
file_reader = TextFileReader(host.filesystem, style_processor)
@@ -149,7 +149,7 @@ class CheckWebKitStyle(object):
file_reader.process_paths(paths)
else:
changed_files = paths if options.diff_files else None
- patch = host.scm().create_patch(options.git_commit, changed_files=changed_files)
+ patch = host.git().create_patch(options.git_commit, changed_files=changed_files)
patch_checker = PatchReader(file_reader)
patch_checker.check(patch)

Powered by Google App Engine
This is Rietveld 408576698