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

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

Issue 14456006: Fixes to make scripts generate includes with paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to a newer chromium version 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
« no previous file with comments | « Source/core/scripts/InFilesCompiler.pm ('k') | Source/core/scripts/make_event_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/scripts/make_dom_exceptions.pl
diff --git a/Source/core/scripts/make_dom_exceptions.pl b/Source/core/scripts/make_dom_exceptions.pl
index 01e9e3914fb079487b7417a28ce388bf09a29c35..ecb92d45e5303d4a4f8ada80f18c03a23be4d8e8 100644
--- a/Source/core/scripts/make_dom_exceptions.pl
+++ b/Source/core/scripts/make_dom_exceptions.pl
@@ -33,7 +33,6 @@
use strict;
use InFilesCompiler;
-
my %defaultParameters = (
'namespace' => 0
);
@@ -144,7 +143,7 @@ sub generateImplementation()
print F "#include \"config.h\"\n";
print F "#include \"ExceptionCodeDescription.h\"\n";
print F "\n";
- print F "#include \"ExceptionCode.h\"\n";
+ print F "#include \"core/dom/ExceptionCode.h\"\n";
for my $exceptionType (sort keys %parsedItems) {
my $conditional = $parsedItems{$exceptionType}{"conditional"};
« no previous file with comments | « Source/core/scripts/InFilesCompiler.pm ('k') | Source/core/scripts/make_event_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698