summaryrefslogtreecommitdiffstats
path: root/WebCore/inspector
diff options
context:
space:
mode:
authorRussell Brenner <russellbrenner@google.com>2010-11-22 16:58:26 -0800
committerRussell Brenner <russellbrenner@google.com>2010-12-02 13:47:21 -0800
commit9f8811ec084be6ba9380c41abf6e2a080b6d9b91 (patch)
tree94cfc7394dc50d1e505c50ac8390360934511b4d /WebCore/inspector
parent3983c1de0a42b77648fc30d85f25496c772c148f (diff)
downloadexternal_webkit-9f8811ec084be6ba9380c41abf6e2a080b6d9b91.zip
external_webkit-9f8811ec084be6ba9380c41abf6e2a080b6d9b91.tar.gz
external_webkit-9f8811ec084be6ba9380c41abf6e2a080b6d9b91.tar.bz2
Merge WebKit at r72274: Fix CodeGeneratorV8.pm
Some of the script-generation code puts include statements in source files when they need to be in headers. Cherry-picked from webkit: http://trac.webkit.org/changeset/72948 Change-Id: I07d425bcb97abcdda25b5ff2ea7af887a925f489
Diffstat (limited to 'WebCore/inspector')
-rw-r--r--WebCore/inspector/CodeGeneratorInspector.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/WebCore/inspector/CodeGeneratorInspector.pm b/WebCore/inspector/CodeGeneratorInspector.pm
index f5f2453..550b5b4 100644
--- a/WebCore/inspector/CodeGeneratorInspector.pm
+++ b/WebCore/inspector/CodeGeneratorInspector.pm
@@ -630,6 +630,7 @@ sub generateSource
push(@sourceContent, "\n#include \"config.h\"");
push(@sourceContent, "#include \"$className.h\"");
push(@sourceContent, "#include <wtf/text/StringConcatenate.h>");
+ push(@sourceContent, "#include <wtf/text/CString.h>");
push(@sourceContent, "");
push(@sourceContent, "#if ENABLE(INSPECTOR)");
push(@sourceContent, "");