diff options
author | ager@google.com <ager@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 07:59:17 +0000 |
---|---|---|
committer | ager@google.com <ager@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 07:59:17 +0000 |
commit | 0bcc612606bfb876daebd9aa0c89d7acc0d6d3a0 (patch) | |
tree | ed0263c4b31c9919084594136753005698828d6e /webkit/port/bindings/scripts/CodeGeneratorV8.pm | |
parent | 305df43b7688b84d68b2f3d77193811e61933f6c (diff) | |
download | chromium_src-0bcc612606bfb876daebd9aa0c89d7acc0d6d3a0.zip chromium_src-0bcc612606bfb876daebd9aa0c89d7acc0d6d3a0.tar.gz chromium_src-0bcc612606bfb876daebd9aa0c89d7acc0d6d3a0.tar.bz2 |
Unfork EventTarget.idl and CSSPrimitiveValue.idl.
We no longer use EventTarget.idl and CSSPrimitiveValue.idl can be used
directly from WebKit with a minor change to the code generator.
Review URL: http://codereview.chromium.org/10879
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5468 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/bindings/scripts/CodeGeneratorV8.pm')
-rw-r--r-- | webkit/port/bindings/scripts/CodeGeneratorV8.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/port/bindings/scripts/CodeGeneratorV8.pm b/webkit/port/bindings/scripts/CodeGeneratorV8.pm index 55cb2ce..1738afa 100644 --- a/webkit/port/bindings/scripts/CodeGeneratorV8.pm +++ b/webkit/port/bindings/scripts/CodeGeneratorV8.pm @@ -1599,7 +1599,7 @@ sub GetNativeType return "double" if $type eq "SVGNumber"; return "SVGPaint::SVGPaintType" if $type eq "SVGPaintType"; return "DOMTimeStamp" if $type eq "DOMTimeStamp"; - return "RGBColor" if $type eq "RGBColor"; + return "unsigned" if $type eq "RGBColor"; return "EventTargetNode*" if $type eq "EventTarget" and $isParameter; return "String" if $type eq "DOMUserData"; # temporary hack, TODO |