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

Unified Diff: Source/bindings/tests/results/V8TestNamedConstructor.h

Issue 39393004: IDL compiler: rename WrapperTypeInfo info => wrapperTypeInfo (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/bindings/tests/results/V8TestNamedConstructor.h
diff --git a/Source/bindings/tests/results/V8TestNamedConstructor.h b/Source/bindings/tests/results/V8TestNamedConstructor.h
index 70bbe44ecae249ddae376de9b33b71445d1c983f..af741a46e063c5a6e083401b2778b83d60dc51cc 100644
--- a/Source/bindings/tests/results/V8TestNamedConstructor.h
+++ b/Source/bindings/tests/results/V8TestNamedConstructor.h
@@ -31,7 +31,7 @@ namespace WebCore {
class V8TestNamedConstructorConstructor {
public:
static v8::Handle<v8::FunctionTemplate> GetTemplate(v8::Isolate*, WrapperWorldType);
- static WrapperTypeInfo info;
+ static WrapperTypeInfo wrapperTypeInfo;
};
class V8TestNamedConstructor {
@@ -44,7 +44,7 @@ public:
return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex));
}
static void derefObject(void*);
- static WrapperTypeInfo info;
+ static WrapperTypeInfo wrapperTypeInfo;
static ActiveDOMObject* toActiveDOMObject(v8::Handle<v8::Object>);
static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
static inline void* toInternalPointer(TestNamedConstructor* impl)
@@ -67,7 +67,7 @@ private:
template<>
class WrapperTypeTraits<TestNamedConstructor > {
public:
- static WrapperTypeInfo* info() { return &V8TestNamedConstructor::info; }
+ static WrapperTypeInfo* wrapperTypeInfo() { return &V8TestNamedConstructor::wrapperTypeInfo; }
};
inline v8::Handle<v8::Object> wrap(TestNamedConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)

Powered by Google App Engine
This is Rietveld 408576698