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

Unified Diff: Source/bindings/scripts/CodeGeneratorV8.pm

Issue 14242011: Absolutify paths to css/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/bindings/scripts/CodeGeneratorV8.pm
diff --git a/Source/bindings/scripts/CodeGeneratorV8.pm b/Source/bindings/scripts/CodeGeneratorV8.pm
index 9f4cd2faf6afab2bd154f6ae6e4c56924c59cb9e..46b25b4a7ee2e74f79e0002611fff96d39661dec 100644
--- a/Source/bindings/scripts/CodeGeneratorV8.pm
+++ b/Source/bindings/scripts/CodeGeneratorV8.pm
@@ -170,11 +170,11 @@ sub AddIncludesForType
}
if ($type eq "CSSStyleSheet" or $type eq "StyleSheet") {
- AddToImplIncludes("CSSImportRule.h");
+ AddToImplIncludes("core/css/CSSImportRule.h");
}
if ($type eq "CSSStyleDeclaration") {
- AddToImplIncludes("StylePropertySet.h");
+ AddToImplIncludes("core/css/StylePropertySet.h");
}
if ($type eq "Plugin" or $type eq "PluginArray" or $type eq "MimeTypeArray") {
@@ -4495,7 +4495,7 @@ sub JSValueToNative
}
if ($type eq "MediaQueryListListener") {
- AddToImplIncludes("MediaQueryListListener.h");
+ AddToImplIncludes("core/css/MediaQueryListListener.h");
return "MediaQueryListListener::create(" . $value . ")";
}
« no previous file with comments | « Source/WebKit/chromium/src/WebViewImpl.cpp ('k') | Source/bindings/tests/results/V8TestMediaQueryListListener.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698