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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
94 case ConstantTypeString: | 94 case ConstantTypeString: |
95 functionDescriptor->Set(constantName, v8::String::NewFromUtf8(isolat e, constant->svalue), static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::Dont Delete)); | 95 functionDescriptor->Set(constantName, v8::String::NewFromUtf8(isolat e, constant->svalue), static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::Dont Delete)); |
96 prototype->Set(constantName, v8::String::NewFromUtf8(isolate, consta nt->svalue), static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); | 96 prototype->Set(constantName, v8::String::NewFromUtf8(isolate, consta nt->svalue), static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); |
97 break; | 97 break; |
98 default: | 98 default: |
99 ASSERT_NOT_REACHED(); | 99 ASSERT_NOT_REACHED(); |
100 } | 100 } |
101 } | 101 } |
102 } | 102 } |
103 | 103 |
104 void V8DOMConfiguration::installConstant(v8::Handle<v8::FunctionTemplate> functi onDescriptor, v8::Handle<v8::ObjectTemplate> prototype, const char* name, v8::Ac cessorGetterCallback getter, v8::Isolate* isolate) | |
haraken
2014/09/23 07:52:28
Would you add a comment about why installConstant
Jens Widell
2014/09/23 09:07:32
Comment added.
| |
105 { | |
106 v8::Handle<v8::String> constantName = v8AtomicString(isolate, name); | |
107 functionDescriptor->SetNativeDataProperty(constantName, getter, 0, v8::Handl e<v8::Value>(), static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete )); | |
108 prototype->SetNativeDataProperty(constantName, getter, 0, v8::Handle<v8::Val ue>(), static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete)); | |
109 } | |
110 | |
104 void V8DOMConfiguration::installMethods(v8::Handle<v8::ObjectTemplate> prototype , v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const M ethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) | 111 void V8DOMConfiguration::installMethods(v8::Handle<v8::ObjectTemplate> prototype , v8::Handle<v8::Signature> signature, v8::PropertyAttribute attributes, const M ethodConfiguration* callbacks, size_t callbackCount, v8::Isolate* isolate) |
105 { | 112 { |
106 for (size_t i = 0; i < callbackCount; ++i) | 113 for (size_t i = 0; i < callbackCount; ++i) |
107 installMethod(prototype, signature, attributes, callbacks[i], isolate); | 114 installMethod(prototype, signature, attributes, callbacks[i], isolate); |
108 } | 115 } |
109 | 116 |
110 v8::Handle<v8::FunctionTemplate> V8DOMConfiguration::functionTemplateForCallback (v8::Handle<v8::Signature> signature, v8::FunctionCallback callback, int length, v8::Isolate* isolate) | 117 v8::Handle<v8::FunctionTemplate> V8DOMConfiguration::functionTemplateForCallback (v8::Handle<v8::Signature> signature, v8::FunctionCallback callback, int length, v8::Isolate* isolate) |
111 { | 118 { |
112 v8::Local<v8::FunctionTemplate> functionTemplate = v8::FunctionTemplate::New (isolate, callback, v8Undefined(), signature, length); | 119 v8::Local<v8::FunctionTemplate> functionTemplate = v8::FunctionTemplate::New (isolate, callback, v8Undefined(), signature, length); |
113 functionTemplate->RemovePrototype(); | 120 functionTemplate->RemovePrototype(); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
150 return result; | 157 return result; |
151 | 158 |
152 TRACE_EVENT_SCOPED_SAMPLING_STATE("blink", "BuildDOMTemplate"); | 159 TRACE_EVENT_SCOPED_SAMPLING_STATE("blink", "BuildDOMTemplate"); |
153 result = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidCons tructorMode); | 160 result = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidCons tructorMode); |
154 configureDOMClassTemplate(result, isolate); | 161 configureDOMClassTemplate(result, isolate); |
155 data->setDOMTemplate(wrapperTypeInfo, result); | 162 data->setDOMTemplate(wrapperTypeInfo, result); |
156 return result; | 163 return result; |
157 } | 164 } |
158 | 165 |
159 } // namespace blink | 166 } // namespace blink |
OLD | NEW |