Index: Source/bindings/v8/V8PerIsolateData.cpp |
diff --git a/Source/bindings/v8/V8PerIsolateData.cpp b/Source/bindings/v8/V8PerIsolateData.cpp |
index 84691b7ef0063ef49a387261841719a90531a909..98428556b45646e978e424bb51e03a30bc302613 100644 |
--- a/Source/bindings/v8/V8PerIsolateData.cpp |
+++ b/Source/bindings/v8/V8PerIsolateData.cpp |
@@ -117,7 +117,7 @@ void V8PerIsolateData::setPrivateTemplate(WrapperWorldType currentWorldType, voi |
templateMap(currentWorldType).add(privatePointer, UnsafePersistent<v8::FunctionTemplate>(m_isolate, templ)); |
} |
-v8::Handle<v8::FunctionTemplate> V8PerIsolateData::rawTemplate(WrapperTypeInfo* info, WrapperWorldType currentWorldType) |
+v8::Handle<v8::FunctionTemplate> V8PerIsolateData::rawTemplate(const WrapperTypeInfo* info, WrapperWorldType currentWorldType) |
{ |
TemplateMap& templates = rawTemplateMap(currentWorldType); |
TemplateMap::iterator result = templates.find(info); |
@@ -139,7 +139,7 @@ v8::Local<v8::Context> V8PerIsolateData::ensureRegexContext() |
return m_regexContext.newLocal(m_isolate); |
} |
-bool V8PerIsolateData::hasInstance(WrapperTypeInfo* info, v8::Handle<v8::Value> value, WrapperWorldType currentWorldType) |
+bool V8PerIsolateData::hasInstance(const WrapperTypeInfo* info, v8::Handle<v8::Value> value, WrapperWorldType currentWorldType) |
{ |
TemplateMap& templates = rawTemplateMap(currentWorldType); |
TemplateMap::iterator result = templates.find(info); |