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

Unified Diff: Source/bindings/v8/WrapperTypeInfo.h

Issue 26547005: IDL compiler: [PerContextEnabled] for getters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reupload Created 7 years, 2 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 | « Source/bindings/v8/V8WindowShell.cpp ('k') | Source/bindings/v8/custom/V8ArrayBufferCustom.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/WrapperTypeInfo.h
diff --git a/Source/bindings/v8/WrapperTypeInfo.h b/Source/bindings/v8/WrapperTypeInfo.h
index 3839e5b2dcf7f84de1bb6d69aa50f91f7b4c50ed..abbeb028f59cacfe7393335e6b24a1035529605a 100644
--- a/Source/bindings/v8/WrapperTypeInfo.h
+++ b/Source/bindings/v8/WrapperTypeInfo.h
@@ -61,7 +61,7 @@ namespace WebCore {
typedef ActiveDOMObject* (*ToActiveDOMObjectFunction)(v8::Handle<v8::Object>);
typedef EventTarget* (*ToEventTargetFunction)(v8::Handle<v8::Object>);
typedef void* (*OpaqueRootForGC)(void*, v8::Isolate*);
- typedef void (*InstallPerContextPrototypePropertiesFunction)(v8::Handle<v8::Object>, v8::Isolate*);
+ typedef void (*InstallPerContextEnabledPrototypePropertiesFunction)(v8::Handle<v8::Object>, v8::Isolate*);
enum WrapperTypePrototype {
WrapperTypeObjectPrototype,
@@ -102,10 +102,10 @@ namespace WebCore {
derefObjectFunction(object);
}
- void installPerContextPrototypeProperties(v8::Handle<v8::Object> proto, v8::Isolate* isolate)
+ void installPerContextEnabledPrototypeProperties(v8::Handle<v8::Object> proto, v8::Isolate* isolate)
{
- if (installPerContextPrototypePropertiesFunction)
- installPerContextPrototypePropertiesFunction(proto, isolate);
+ if (installPerContextEnabledPrototypePropertiesFunction)
+ installPerContextEnabledPrototypePropertiesFunction(proto, isolate);
}
ActiveDOMObject* toActiveDOMObject(v8::Handle<v8::Object> object)
@@ -134,7 +134,7 @@ namespace WebCore {
const ToActiveDOMObjectFunction toActiveDOMObjectFunction;
const ToEventTargetFunction toEventTargetFunction;
const OpaqueRootForGC opaqueRootForGCFunction;
- const InstallPerContextPrototypePropertiesFunction installPerContextPrototypePropertiesFunction;
+ const InstallPerContextEnabledPrototypePropertiesFunction installPerContextEnabledPrototypePropertiesFunction;
const WrapperTypeInfo* parentClass;
const WrapperTypePrototype wrapperTypePrototype;
};
« no previous file with comments | « Source/bindings/v8/V8WindowShell.cpp ('k') | Source/bindings/v8/custom/V8ArrayBufferCustom.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698