| OLD | NEW |
| 1 // Copyright 2014 The Dartium Authors. All rights reserved. | 1 // Copyright 2014 The Dartium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file has been auto-generated by {{code_generator_dart}}. DO NOT MODIFY! | 5 // This file has been auto-generated by {{code_generator_dart}}. DO NOT MODIFY! |
| 6 | 6 |
| 7 #ifndef {{dart_class}}_h | 7 #ifndef {{dart_class}}_h |
| 8 #define {{dart_class}}_h | 8 #define {{dart_class}}_h |
| 9 | 9 |
| 10 {% for filename in header_includes %} | 10 {% for filename in header_includes %} |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 } | 68 } |
| 69 | 69 |
| 70 static PassOwnPtr<{{dart_class}}> FromArgumentsWithNullCheck( | 70 static PassOwnPtr<{{dart_class}}> FromArgumentsWithNullCheck( |
| 71 Dart_NativeArguments args, int index, Dart_Handle& exception) { | 71 Dart_NativeArguments args, int index, Dart_Handle& exception) { |
| 72 return {{dart_class}}::createWithNullCheck(args, index, exception); | 72 return {{dart_class}}::createWithNullCheck(args, index, exception); |
| 73 } | 73 } |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // blink | 76 } // blink |
| 77 #endif // {{dart_class}}_h | 77 #endif // {{dart_class}}_h |
| OLD | NEW |