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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 // to never pass an empty creation context. | 95 // to never pass an empty creation context. |
96 v8::Handle<v8::Context> context = creationContext.IsEmpty() ? isolate->GetCu
rrentContext() : creationContext->CreationContext(); | 96 v8::Handle<v8::Context> context = creationContext.IsEmpty() ? isolate->GetCu
rrentContext() : creationContext->CreationContext(); |
97 | 97 |
98 if (!element->isUpgradedCustomElement() || DOMWrapperWorld::world(context)->
isIsolatedWorld()) | 98 if (!element->isUpgradedCustomElement() || DOMWrapperWorld::world(context)->
isIsolatedWorld()) |
99 return createUpgradeCandidateWrapper(element.get(), creationContext, iso
late, createSpecificWrapper); | 99 return createUpgradeCandidateWrapper(element.get(), creationContext, iso
late, createSpecificWrapper); |
100 | 100 |
101 V8PerContextData* perContextData = V8PerContextData::from(context); | 101 V8PerContextData* perContextData = V8PerContextData::from(context); |
102 if (!perContextData) | 102 if (!perContextData) |
103 return v8::Handle<v8::Object>(); | 103 return v8::Handle<v8::Object>(); |
104 | 104 |
105 CustomElementBinding* binding = perContextData->customElementBinding(CustomE
lement::definitionFor(element.get())); | 105 CustomElementBinding* binding = perContextData->customElementBinding(element
->customElementDefinition()); |
106 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, binding->wrapperType(), element.get(), isolate); | 106 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, binding->wrapperType(), element.get(), isolate); |
107 if (wrapper.IsEmpty()) | 107 if (wrapper.IsEmpty()) |
108 return v8::Handle<v8::Object>(); | 108 return v8::Handle<v8::Object>(); |
109 | 109 |
110 wrapper->SetPrototype(binding->prototype()); | 110 wrapper->SetPrototype(binding->prototype()); |
111 | 111 |
112 V8DOMWrapper::associateObjectWithWrapper<WrapperType>(element, binding->wrap
perType(), wrapper, isolate, WrapperConfiguration::Dependent); | 112 V8DOMWrapper::associateObjectWithWrapper<WrapperType>(element, binding->wrap
perType(), wrapper, isolate, WrapperConfiguration::Dependent); |
113 return wrapper; | 113 return wrapper; |
114 } | 114 } |
115 | 115 |
116 template | 116 template |
117 class CustomElementWrapper<HTMLElement, V8HTMLElement>; | 117 class CustomElementWrapper<HTMLElement, V8HTMLElement>; |
118 | 118 |
119 template | 119 template |
120 class CustomElementWrapper<SVGElement, V8SVGElement>; | 120 class CustomElementWrapper<SVGElement, V8SVGElement>; |
121 | 121 |
122 } // namespace WebCore | 122 } // namespace WebCore |
OLD | NEW |