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

Side by Side Diff: webkit/port/bindings/scripts/CodeGeneratorV8.pm

Issue 149391: Chaos Demo Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 # Copyright (C) 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com> 3 # Copyright (C) 2006 Anders Carlsson <andersca@mac.com>
4 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 4 # Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
5 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> 5 # Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org>
6 # Copyright (C) 2006 Apple Computer, Inc. 6 # Copyright (C) 2006 Apple Computer, Inc.
7 # Copyright (C) 2007, 2008, 2009 Google Inc. 7 # Copyright (C) 2007, 2008, 2009 Google Inc.
8 # 8 #
9 # This file is part of the KDE project 9 # This file is part of the KDE project
10 # 10 #
(...skipping 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 return "RefPtr<${type}>" if IsRefPtrType($type) and not $isParameter; 1706 return "RefPtr<${type}>" if IsRefPtrType($type) and not $isParameter;
1707 1707
1708 # Default, assume native type is a pointer with same type name as idl type 1708 # Default, assume native type is a pointer with same type name as idl type
1709 return "${type}*"; 1709 return "${type}*";
1710 } 1710 }
1711 1711
1712 1712
1713 my %typeCanFailConversion = ( 1713 my %typeCanFailConversion = (
1714 "AtomicString" => 0, 1714 "AtomicString" => 0,
1715 "Attr" => 1, 1715 "Attr" => 1,
1716 "ChaosGeoposition" => 1,
1717 "ChaosPositionCallback" => 1,
1716 "CompareHow" => 0, 1718 "CompareHow" => 0,
1717 "DataGridColumn" => 0, 1719 "DataGridColumn" => 0,
1718 "DOMString" => 0, 1720 "DOMString" => 0,
1719 "DOMWindow" => 0, 1721 "DOMWindow" => 0,
1720 "DocumentType" => 0, 1722 "DocumentType" => 0,
1721 "Element" => 0, 1723 "Element" => 0,
1722 "Event" => 0, 1724 "Event" => 0,
1723 "EventListener" => 0, 1725 "EventListener" => 0,
1724 "EventTarget" => 0, 1726 "EventTarget" => 0,
1727 "Geoposition" => 1,
1725 "HTMLElement" => 0, 1728 "HTMLElement" => 0,
1726 "HTMLOptionElement" => 0, 1729 "HTMLOptionElement" => 0,
1727 "Node" => 0, 1730 "Node" => 0,
1728 "NodeFilter" => 0, 1731 "NodeFilter" => 0,
1729 "MessagePort" => 0, 1732 "MessagePort" => 0,
1730 "NSResolver" => 0, 1733 "NSResolver" => 0,
1734 "PositionCallback" => 1,
1735 "PositionError" => 1,
1736 "PositionErrorCallback" => 1,
1737 "PositionOptions" => 1,
1731 "Range" => 0, 1738 "Range" => 0,
1732 "SQLResultSet" => 0, 1739 "SQLResultSet" => 0,
1733 "Storage" => 0, 1740 "Storage" => 0,
1734 "SVGAngle" => 0, 1741 "SVGAngle" => 0,
1735 "SVGElement" => 0, 1742 "SVGElement" => 0,
1736 "SVGLength" => 1, 1743 "SVGLength" => 1,
1737 "SVGMatrix" => 1, 1744 "SVGMatrix" => 1,
1738 "SVGNumber" => 0, 1745 "SVGNumber" => 0,
1739 "SVGPaintType" => 0, 1746 "SVGPaintType" => 0,
1740 "SVGPathSeg" => 0, 1747 "SVGPathSeg" => 0,
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
2190 return 0; 2197 return 0;
2191 } 2198 }
2192 2199
2193 sub DebugPrint 2200 sub DebugPrint
2194 { 2201 {
2195 my $output = shift; 2202 my $output = shift;
2196 2203
2197 print $output; 2204 print $output;
2198 print "\n"; 2205 print "\n";
2199 } 2206 }
OLDNEW
« no previous file with comments | « webkit/chaos/V8CustomChaosPositionCallback.cpp ('k') | webkit/port/bindings/v8/DOMObjectsInclude.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698