Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1145)

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp

Issue 2815453005: [Bindings] Use SetNativeDataProperty to install features on instances (Closed)
Patch Set: Use SetNativeDataProperty Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp b/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp
index 288633ca3b04386091e2453ed33aebd4b18f857d..5c35cc01aad088b6736f297559db5aff0425a197 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp
@@ -91,41 +91,33 @@ void InstallAttributeInternal(
v8::Isolate* isolate,
v8::Local<v8::Object> instance,
v8::Local<v8::Object> prototype,
- const V8DOMConfiguration::AttributeConfiguration& attribute,
+ const V8DOMConfiguration::AttributeConfiguration& config,
const DOMWrapperWorld& world) {
- if (!WorldConfigurationApplies(attribute, world))
+ if (!WorldConfigurationApplies(config, world))
return;
- v8::Local<v8::Name> name = V8AtomicString(isolate, attribute.name);
-
- // This method is only being used for installing interfaces which are
- // enabled through origin trials. Assert here that it is being called with
- // an attribute configuration for a constructor.
- // TODO(iclelland): Relax this constraint and allow arbitrary data-type
- // properties to be added here.
- DCHECK_EQ(&V8ConstructorAttributeGetter, attribute.getter);
- V8PerContextData* per_context_data =
- V8PerContextData::From(isolate->GetCurrentContext());
- v8::Local<v8::Function> data =
- per_context_data->ConstructorForType(attribute.data);
+ v8::Local<v8::Name> name = V8AtomicString(isolate, config.name);
+ v8::AccessorNameGetterCallback getter = config.getter;
+ v8::AccessorNameSetterCallback setter = config.setter;
+ v8::Local<v8::Value> data =
+ v8::External::New(isolate, const_cast<WrapperTypeInfo*>(config.data));
+ v8::PropertyAttribute attribute =
+ static_cast<v8::PropertyAttribute>(config.attribute);
+ unsigned location = config.property_location_configuration;
- DCHECK(attribute.property_location_configuration);
- if (attribute.property_location_configuration &
- V8DOMConfiguration::kOnInstance)
+ DCHECK(location);
+ v8::Local<v8::Context> context = isolate->GetCurrentContext();
+ if (location & V8DOMConfiguration::kOnInstance) {
instance
- ->DefineOwnProperty(
- isolate->GetCurrentContext(), name, data,
- static_cast<v8::PropertyAttribute>(attribute.attribute))
+ ->SetNativeDataProperty(context, name, getter, setter, data, attribute)
.ToChecked();
- if (attribute.property_location_configuration &
- V8DOMConfiguration::kOnPrototype)
+ }
+ if (location & V8DOMConfiguration::kOnPrototype) {
prototype
- ->DefineOwnProperty(
- isolate->GetCurrentContext(), name, data,
- static_cast<v8::PropertyAttribute>(attribute.attribute))
+ ->SetNativeDataProperty(context, name, getter, setter, data, attribute)
.ToChecked();
- if (attribute.property_location_configuration &
- V8DOMConfiguration::kOnInterface)
+ }
+ if (location & V8DOMConfiguration::kOnInterface)
NOTREACHED();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698