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

Unified Diff: tools/dom/templates/html/dartium/cpp_header.template

Issue 23681014: - Modify toDart to first do a simple lookup in the appropriate table before going down the templati… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« tools/dom/scripts/generator.py ('K') | « tools/dom/scripts/systemnative.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/templates/html/dartium/cpp_header.template
===================================================================
--- tools/dom/templates/html/dartium/cpp_header.template (revision 27632)
+++ tools/dom/templates/html/dartium/cpp_header.template (working copy)
@@ -28,6 +28,14 @@
{
return toDart(value.get());
}
+ static Dart_Handle createWrapper(PassRefPtr< $WEBCORE_CLASS_NAME > value)
+ {
+ return createWrapper(value.get());
+ }
+ static void returnToDart(Dart_NativeArguments args, PassRefPtr< $WEBCORE_CLASS_NAME > value)
+ {
+ return returnToDart(args, value.get());
+ }
static Dart_NativeFunction resolver(Dart_Handle name, int argumentCount);
};
« tools/dom/scripts/generator.py ('K') | « tools/dom/scripts/systemnative.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698