| Index: tools/dom/templates/html/dartium/cpp_header.template
|
| diff --git a/tools/dom/templates/html/dartium/cpp_header.template b/tools/dom/templates/html/dartium/cpp_header.template
|
| index ee4ef1feb38087c6605ec595c4827404e8fe2379..bbe5835ba6b076a70e911b43132560071e6ebf0c 100644
|
| --- a/tools/dom/templates/html/dartium/cpp_header.template
|
| +++ b/tools/dom/templates/html/dartium/cpp_header.template
|
| @@ -8,7 +8,6 @@
|
| #define Dart$(INTERFACE)_h
|
|
|
| #include "DartDOMWrapper.h"
|
| -#include "DartWrapperTypeInfo.h"
|
| $WEBCORE_INCLUDES
|
| #include <dart_api.h>
|
|
|
| @@ -21,7 +20,6 @@ struct Dart$INTERFACE {
|
| static const bool isNode = $IS_NODE;
|
| static const bool isActive = $IS_ACTIVE;
|
| static const bool isEventTarget = $IS_EVENT_TARGET;
|
| - static DartWrapperTypeInfo info;
|
|
|
| $TO_NATIVE
|
| $TO_DART
|
| @@ -33,12 +31,6 @@ $TO_DART
|
| static Dart_NativeFunction resolver(Dart_Handle name, int argumentCount);
|
| };
|
|
|
| -template<>
|
| -class DartWrapperTypeTraits<$WEBCORE_CLASS_NAME > {
|
| -public:
|
| - static DartWrapperTypeInfo* info() { return &Dart$INTERFACE::info; }
|
| -};
|
| -
|
| namespace Dart$(INTERFACE)Internal {
|
| $DECLARATIONS
|
| }
|
|
|