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

Unified Diff: Source/core/scripts/make_event_factory.pl

Issue 14456006: Fixes to make scripts generate includes with paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 8 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: Source/core/scripts/make_event_factory.pl
diff --git a/Source/core/scripts/make_event_factory.pl b/Source/core/scripts/make_event_factory.pl
index bbbce09a17c628d03f5dde916f13a29d822ae70e..fe94ae54bca6a4aaf04595500cac9fdfba00f492 100644
--- a/Source/core/scripts/make_event_factory.pl
+++ b/Source/core/scripts/make_event_factory.pl
@@ -83,10 +83,10 @@ sub generateImplementation()
print F $InCompiler->license();
print F "#include \"config.h\"\n";
- print F "#include \"${namespace}Factory.h\"\n";
+ print F "#include \"core/dom/${namespace}Factory.h\"\n";
print F "\n";
print F "#include \"${namespace}Headers.h\"\n";
- print F "#include \"RuntimeEnabledFeatures.h\"\n";
+ print F "#include \"core/page/RuntimeEnabledFeatures.h\"\n";
print F "\n";
print F "namespace WebCore {\n";
print F "\n";

Powered by Google App Engine
This is Rietveld 408576698