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

Unified Diff: third_party/WebKit/PRESUBMIT.py

Issue 2363573002: 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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
This is Rietveld 408576698