Index: xfa/fxjse/util_inline.h |
diff --git a/xfa/fxjse/util_inline.h b/xfa/fxjse/util_inline.h |
index e61dc6aa803261731a2cd793ddd506128af5f740..336886b666ce4127c5e2e58f80e1e83508c8dac6 100644 |
--- a/xfa/fxjse/util_inline.h |
+++ b/xfa/fxjse/util_inline.h |
@@ -20,8 +20,7 @@ static V8_INLINE void FXJSE_UpdateObjectBinding(v8::Local<v8::Object>& hObject, |
hObject->SetAlignedPointerInInternalField(0, lpNewBinding); |
} |
static V8_INLINE void* FXJSE_RetrieveObjectBinding( |
- const v8::Local<v8::Object>& hJSObject, |
- CFXJSE_Class* lpClass = NULL) { |
+ const v8::Local<v8::Object>& hJSObject) { |
ASSERT(!hJSObject.IsEmpty()); |
if (!hJSObject->IsObject()) { |
return NULL; |
@@ -37,14 +36,6 @@ static V8_INLINE void* FXJSE_RetrieveObjectBinding( |
return NULL; |
} |
} |
- if (lpClass) { |
- v8::Local<v8::FunctionTemplate> hClass = |
- v8::Local<v8::FunctionTemplate>::New( |
- lpClass->GetContext()->GetRuntime(), lpClass->GetTemplate()); |
- if (!hClass->HasInstance(hObject)) { |
- return NULL; |
- } |
- } |
return hObject->GetAlignedPointerFromInternalField(0); |
} |