| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 #ifndef Dart$(INTERFACE)_h | |
| 8 #define Dart$(INTERFACE)_h | |
| 9 | |
| 10 #include "ActiveDOMCallback.h" | |
| 11 #include "DartCallback.h" | |
| 12 #include "DartDOMWrapper.h" | |
| 13 #include "$(INTERFACE).h" | |
| 14 | |
| 15 namespace WebCore { | |
| 16 | |
| 17 class Dart$(INTERFACE) : public $(INTERFACE), public ActiveDOMCallback { | |
| 18 public: | |
| 19 typedef $(INTERFACE) NativeType; | |
| 20 | |
| 21 static PassRefPtr<NativeType> create(Dart_Handle object, Dart_Handle& except
ion) | |
| 22 { | |
| 23 return adoptRef(new Dart$(INTERFACE)(object, exception, DartUtilities::s
criptExecutionContext())); | |
| 24 } | |
| 25 | |
| 26 static PassRefPtr<NativeType> createWithNullCheck(Dart_Handle object, Dart_H
andle& exception) | |
| 27 { | |
| 28 if (Dart_IsNull(object)) | |
| 29 return 0; | |
| 30 return create(object, exception); | |
| 31 } | |
| 32 $HANDLERS | |
| 33 | |
| 34 private: | |
| 35 Dart$(INTERFACE)(Dart_Handle object, Dart_Handle& exception, ScriptExecution
Context* context) | |
| 36 : ActiveDOMCallback(context) | |
| 37 , m_callback(object, exception) | |
| 38 { | |
| 39 } | |
| 40 | |
| 41 DartCallback m_callback; | |
| 42 }; | |
| 43 | |
| 44 } | |
| 45 | |
| 46 #endif // Dart$(INTERFACE)_h | |
| OLD | NEW |