| Index: tools/dom/templates/html/dartium/cpp_header.template
|
| ===================================================================
|
| --- tools/dom/templates/html/dartium/cpp_header.template (revision 27676)
|
| +++ 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);
|
| };
|
|
|