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

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

Issue 147121: Update WebKit to 45111 and Skia to 239 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 6 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
« no previous file with comments | « skia/skia.gyp ('k') | webkit/port/bindings/v8/v8_index.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1706
1707 # Default, assume native type is a pointer with same type name as idl type 1707 # Default, assume native type is a pointer with same type name as idl type
1708 return "${type}*"; 1708 return "${type}*";
1709 } 1709 }
1710 1710
1711 1711
1712 my %typeCanFailConversion = ( 1712 my %typeCanFailConversion = (
1713 "AtomicString" => 0, 1713 "AtomicString" => 0,
1714 "Attr" => 1, 1714 "Attr" => 1,
1715 "CompareHow" => 0, 1715 "CompareHow" => 0,
1716 "DataGridColumn" => 0,
1716 "DOMString" => 0, 1717 "DOMString" => 0,
1717 "DOMWindow" => 0, 1718 "DOMWindow" => 0,
1718 "DocumentType" => 0, 1719 "DocumentType" => 0,
1719 "Element" => 0, 1720 "Element" => 0,
1720 "Event" => 0, 1721 "Event" => 0,
1721 "EventListener" => 0, 1722 "EventListener" => 0,
1722 "EventTarget" => 0, 1723 "EventTarget" => 0,
1723 "HTMLElement" => 0, 1724 "HTMLElement" => 0,
1724 "HTMLOptionElement" => 0, 1725 "HTMLOptionElement" => 0,
1725 "Node" => 0, 1726 "Node" => 0,
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
2188 return 0; 2189 return 0;
2189 } 2190 }
2190 2191
2191 sub DebugPrint 2192 sub DebugPrint
2192 { 2193 {
2193 my $output = shift; 2194 my $output = shift;
2194 2195
2195 print $output; 2196 print $output;
2196 print "\n"; 2197 print "\n";
2197 } 2198 }
OLDNEW
« no previous file with comments | « skia/skia.gyp ('k') | webkit/port/bindings/v8/v8_index.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698