OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 static void installCallbacks(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::
Signature>, v8::PropertyAttribute, const MethodConfiguration*, size_t callbackCo
unt, v8::Isolate*); | 112 static void installCallbacks(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::
Signature>, v8::PropertyAttribute, const MethodConfiguration*, size_t callbackCo
unt, v8::Isolate*); |
113 | 113 |
114 static void installAccessors(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::
Signature>, const AccessorConfiguration*, size_t accessorCount, v8::Isolate*); | 114 static void installAccessors(v8::Handle<v8::ObjectTemplate>, v8::Handle<v8::
Signature>, const AccessorConfiguration*, size_t accessorCount, v8::Isolate*); |
115 | 115 |
116 static v8::Local<v8::Signature> installDOMClassTemplate(v8::Handle<v8::Funct
ionTemplate>, const char* interfaceName, v8::Handle<v8::FunctionTemplate> parent
Class, size_t fieldCount, | 116 static v8::Local<v8::Signature> installDOMClassTemplate(v8::Handle<v8::Funct
ionTemplate>, const char* interfaceName, v8::Handle<v8::FunctionTemplate> parent
Class, size_t fieldCount, |
117 const AttributeConfiguration*, size_t attributeCount, | 117 const AttributeConfiguration*, size_t attributeCount, |
118 const AccessorConfiguration*, size_t accessorCount, | 118 const AccessorConfiguration*, size_t accessorCount, |
119 const MethodConfiguration*, size_t callbackCount, | 119 const MethodConfiguration*, size_t callbackCount, |
120 v8::Isolate*); | 120 v8::Isolate*); |
| 121 |
| 122 static v8::Handle<v8::FunctionTemplate> domClassTemplate(v8::Isolate*, Wrapp
erTypeInfo*, void (*)(v8::Handle<v8::FunctionTemplate>, v8::Isolate*)); |
121 }; | 123 }; |
122 | 124 |
123 } // namespace WebCore | 125 } // namespace WebCore |
124 | 126 |
125 #endif // V8DOMConfiguration_h | 127 #endif // V8DOMConfiguration_h |
OLD | NEW |