diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-20 19:01:55 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-20 19:01:55 +0000 |
commit | c3fd33c7c7d807d79914337e9beb805b1bd1f54c (patch) | |
tree | aa2eb235662b9159eb0e21ec1fe3006d0d30a5ec /webkit/port/bindings/scripts | |
parent | 6bfd15cabdcf379bd5e1e0dfb9b42fadef477400 (diff) | |
download | chromium_src-c3fd33c7c7d807d79914337e9beb805b1bd1f54c.zip chromium_src-c3fd33c7c7d807d79914337e9beb805b1bd1f54c.tar.gz chromium_src-c3fd33c7c7d807d79914337e9beb805b1bd1f54c.tar.bz2 |
Rollback 3612 abd 3613 to fix mac build. TBR.
Review URL: http://codereview.chromium.org/7674
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3618 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/bindings/scripts')
-rw-r--r-- | webkit/port/bindings/scripts/CodeGeneratorV8.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/port/bindings/scripts/CodeGeneratorV8.pm b/webkit/port/bindings/scripts/CodeGeneratorV8.pm index 2121862..81391b9 100644 --- a/webkit/port/bindings/scripts/CodeGeneratorV8.pm +++ b/webkit/port/bindings/scripts/CodeGeneratorV8.pm @@ -225,6 +225,10 @@ sub GetImplementationFileName my $iface = shift; return "HTMLCollection.h" if $iface eq "UndetectableHTMLCollection"; return "HTMLInputElement.h" if $iface eq "HTMLSelectionInputElement"; + return "Navigator.h" if $iface eq "MimeType"; + return "Navigator.h" if $iface eq "MimeTypeArray"; + return "Navigator.h" if $iface eq "Plugin"; + return "Navigator.h" if $iface eq "PluginArray"; return "Event.h" if $iface eq "DOMTimeStamp"; return "NamedAttrMap.h" if $iface eq "NamedNodeMap"; return "NameNodeList.h" if $iface eq "NodeList"; @@ -1429,13 +1433,11 @@ sub IsRefPtrType return 1 if $type eq "HTMLElement"; return 1 if $type eq "HTMLOptionsCollection"; return 1 if $type eq "ImageData"; - return 1 if $type eq "MimeType"; return 1 if $type eq "Node"; return 1 if $type eq "NodeList"; return 1 if $type eq "NodeFilter"; return 1 if $type eq "NodeIterator"; return 1 if $type eq "NSResolver"; - return 1 if $type eq "Plugin"; return 1 if $type eq "ProcessingInstruction"; return 1 if $type eq "Range"; return 1 if $type eq "Text"; |