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

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

Issue 113743003: Add more functions to the list of leaf functions which do not need an (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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
« no previous file with comments | « 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 31522)
+++ tools/dom/templates/html/dartium/cpp_header.template (working copy)
@@ -34,9 +34,9 @@
{
return createWrapper(value.get());
}
- static void returnToDart(Dart_NativeArguments args, PassRefPtr< $WEBCORE_CLASS_NAME > value)
+ static void returnToDart(Dart_NativeArguments args, PassRefPtr< $WEBCORE_CLASS_NAME > value, bool autoDartScope = true)
{
- return returnToDart(args, value.get());
+ return returnToDart(args, value.get(), autoDartScope);
}
static Dart_NativeFunction resolver(Dart_Handle name, int argumentCount, bool* autoSetupScope);
« no previous file with comments | « tools/dom/scripts/systemnative.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698