mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
These were a feature for allowing multiple scripting contexts to access the same global state without leaking wrappers between them. For example, if the inspector wanted to modify window.Array.dangerousFunction = ... it wouldn't want the author's content to have access to that. This feature is not part of Sky's security model and thus this is just dead code. I tried to remove worlds all together, but there is something special about how we use a "fake" world (which is neither main nor isolated) for GC, regexp and testing. R=rafaelw@chromium.org, abarth@chromium.org BUG= Review URL: https://codereview.chromium.org/776143003
94 lines
4.5 KiB
C++
94 lines
4.5 KiB
C++
/*
|
|
* Copyright (C) 2012 Google Inc. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above
|
|
* copyright notice, this list of conditions and the following disclaimer
|
|
* in the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* * Neither the name of Google Inc. nor the names of its
|
|
* contributors may be used to endorse or promote products derived from
|
|
* this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "sky/engine/config.h"
|
|
#include "sky/engine/bindings/core/v8/CustomElementWrapper.h"
|
|
|
|
#include "bindings/core/v8/V8HTMLElement.h"
|
|
#include "core/V8HTMLElementWrapperFactory.h" // FIXME: should be bindings/core/v8
|
|
#include "sky/engine/bindings/core/v8/DOMDataStore.h"
|
|
#include "sky/engine/bindings/core/v8/DOMWrapperWorld.h"
|
|
#include "sky/engine/bindings/core/v8/V8PerContextData.h"
|
|
#include "sky/engine/core/dom/custom/CustomElement.h"
|
|
#include "sky/engine/core/html/HTMLElement.h"
|
|
|
|
namespace blink {
|
|
|
|
template<typename ElementType>
|
|
v8::Handle<v8::Object> createDirectWrapper(ElementType*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
|
|
|
template<>
|
|
v8::Handle<v8::Object> createDirectWrapper<HTMLElement>(HTMLElement* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
|
{
|
|
return createV8HTMLDirectWrapper(element, creationContext, isolate);
|
|
}
|
|
|
|
template<typename ElementType>
|
|
v8::Handle<v8::Object> createUpgradeCandidateWrapper(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*))
|
|
{
|
|
if (CustomElement::isValidName(element->localName()))
|
|
return createDirectWrapper(element, creationContext, isolate);
|
|
if (createSpecificWrapper)
|
|
return createSpecificWrapper(element, creationContext, isolate);
|
|
return createDirectWrapper(element, creationContext, isolate);
|
|
}
|
|
|
|
template<typename ElementType, typename WrapperType>
|
|
v8::Handle<v8::Object> CustomElementWrapper<ElementType, WrapperType>::wrap(PassRefPtr<ElementType> element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*))
|
|
{
|
|
ASSERT(DOMDataStore::getWrapper<V8Element>(element.get(), isolate).IsEmpty());
|
|
|
|
ASSERT(!creationContext.IsEmpty());
|
|
v8::Handle<v8::Context> context = creationContext->CreationContext();
|
|
|
|
if (!element->isUpgradedCustomElement())
|
|
return createUpgradeCandidateWrapper(element.get(), creationContext, isolate, createSpecificWrapper);
|
|
|
|
V8PerContextData* perContextData = V8PerContextData::from(context);
|
|
if (!perContextData)
|
|
return v8::Handle<v8::Object>();
|
|
|
|
CustomElementBinding* binding = perContextData->customElementBinding(element->customElementDefinition());
|
|
v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, binding->wrapperType(), WrapperType::toScriptWrappableBase(element.get()), isolate);
|
|
if (wrapper.IsEmpty())
|
|
return v8::Handle<v8::Object>();
|
|
|
|
wrapper->SetPrototype(binding->prototype());
|
|
|
|
ASSERT(binding->wrapperType()->lifetime == WrapperTypeInfo::Dependent);
|
|
V8DOMWrapper::associateObjectWithWrapper<WrapperType>(element, binding->wrapperType(), wrapper, isolate);
|
|
return wrapper;
|
|
}
|
|
|
|
template
|
|
class CustomElementWrapper<HTMLElement, V8HTMLElement>;
|
|
|
|
} // namespace blink
|