| Index: lib/dom/templates/dom/native/cpp_header.template
|
| diff --git a/lib/dom/templates/dom/native/cpp_header.template b/lib/dom/templates/dom/native/cpp_header.template
|
| index 31000c9fafc4fc6b8f04883aae61dbf50e6a366d..c5903dd47e27deff6485d3378232a5c66c9a6a02 100644
|
| --- a/lib/dom/templates/dom/native/cpp_header.template
|
| +++ b/lib/dom/templates/dom/native/cpp_header.template
|
| @@ -19,15 +19,15 @@ struct Dart$INTERFACE {
|
| typedef $NATIVE_TRAITS_TYPE NativeTraits;
|
|
|
| $TO_NATIVE
|
| +$TO_DART
|
| + static Dart_Handle toDart(PassRefPtr< $WEBCORE_CLASS_NAME > value)
|
| + {
|
| + return toDart(value.get());
|
| + }
|
| +
|
| static Dart_NativeFunction resolver(Dart_Handle name, int argumentCount);
|
| };
|
|
|
| -$TO_DART
|
| -inline Dart_Handle toDartValue(PassRefPtr< $WEBCORE_CLASS_NAME > value)
|
| -{
|
| - return toDartValue(value.get());
|
| -}
|
| -
|
| namespace Dart$(INTERFACE)Internal {
|
| $DECLARATIONS
|
| }
|
|
|