| OLD | NEW |
| 1 #!/usr/bin/perl -w | 1 #!/usr/bin/perl -w |
| 2 | 2 |
| 3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. | 3 # Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org> | 4 # Copyright (C) 2009, Julien Chaffraix <jchaffraix@webkit.org> |
| 5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob
ile.com/) | 5 # Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmob
ile.com/) |
| 6 # Copyright (C) 2011 Ericsson AB. All rights reserved. | 6 # Copyright (C) 2011 Ericsson AB. All rights reserved. |
| 7 # | 7 # |
| 8 # Redistribution and use in source and binary forms, with or without | 8 # Redistribution and use in source and binary forms, with or without |
| 9 # modification, are permitted provided that the following conditions | 9 # modification, are permitted provided that the following conditions |
| 10 # are met: | 10 # are met: |
| (...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1103 | 1103 |
| 1104 print F <<END | 1104 print F <<END |
| 1105 | 1105 |
| 1106 #include "ContextFeatures.h" | 1106 #include "ContextFeatures.h" |
| 1107 #include "Document.h" | 1107 #include "Document.h" |
| 1108 #include "RuntimeEnabledFeatures.h" | 1108 #include "RuntimeEnabledFeatures.h" |
| 1109 #include "Settings.h" | 1109 #include "Settings.h" |
| 1110 | 1110 |
| 1111 #include "V8$parameters{namespace}Element.h" | 1111 #include "V8$parameters{namespace}Element.h" |
| 1112 | 1112 |
| 1113 #include "CustomElementHelpers.h" | 1113 #include "bindings/v8/CustomElementHelpers.h" |
| 1114 | 1114 |
| 1115 #include <v8.h> | 1115 #include <v8.h> |
| 1116 | 1116 |
| 1117 namespace WebCore { | 1117 namespace WebCore { |
| 1118 | 1118 |
| 1119 using namespace $parameters{namespace}Names; | 1119 using namespace $parameters{namespace}Names; |
| 1120 | 1120 |
| 1121 typedef v8::Handle<v8::Object> (*Create$parameters{namespace}ElementWrapperFunct
ion)($parameters{namespace}Element*, v8::Handle<v8::Object> creationContext, v8:
:Isolate*); | 1121 typedef v8::Handle<v8::Object> (*Create$parameters{namespace}ElementWrapperFunct
ion)($parameters{namespace}Element*, v8::Handle<v8::Object> creationContext, v8:
:Isolate*); |
| 1122 | 1122 |
| 1123 END | 1123 END |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1262 } | 1262 } |
| 1263 } | 1263 } |
| 1264 END | 1264 END |
| 1265 ; | 1265 ; |
| 1266 print F "#endif // $parameters{guardFactoryWith}\n\n" if $parameters{guardFa
ctoryWith}; | 1266 print F "#endif // $parameters{guardFactoryWith}\n\n" if $parameters{guardFa
ctoryWith}; |
| 1267 | 1267 |
| 1268 print F "#endif // V8$parameters{namespace}ElementWrapperFactory_h\n"; | 1268 print F "#endif // V8$parameters{namespace}ElementWrapperFactory_h\n"; |
| 1269 | 1269 |
| 1270 close F; | 1270 close F; |
| 1271 } | 1271 } |
| OLD | NEW |