Chromium Code Reviews

Unified Diff: third_party/WebKit/PRESUBMIT.py

Issue 2353003004: Move ViewHostMsg_CreateWindow to mojom (Closed)
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/PRESUBMIT.py
diff --git a/third_party/WebKit/PRESUBMIT.py b/third_party/WebKit/PRESUBMIT.py
index c385157250137e77a50f2f4711ed988f3c5acb39..030099cc632bbe8ef4477a2589b7452bbb95765c 100644
--- a/third_party/WebKit/PRESUBMIT.py
+++ b/third_party/WebKit/PRESUBMIT.py
@@ -22,7 +22,7 @@ def _CheckForNonBlinkVariantMojomIncludes(input_api, output_api):
for f in input_api.AffectedFiles():
for line_num, line in f.ChangedContents():
m = pattern.match(line)
- if m and m.group(1) != '-blink':
+ if m and m.group(1) != '-blink' and m.group(1) != '-shared':
errors.append(' %s:%d %s' % (
f.LocalPath(), line_num, line))

Powered by Google App Engine