Bug 854503 - Rename JS unwrapping functions. r=bholley

This commit is contained in:
Jacek Szpot
2013-04-04 12:14:32 +02:00
parent db0f2e8967
commit 4b634f9cf2
44 changed files with 134 additions and 134 deletions

View File

@@ -339,7 +339,7 @@ JS_FRIEND_API(JSBool)
JS_NondeterministicGetWeakMapKeys(JSContext *cx, JSObject *objArg, JSObject **ret)
{
RootedObject obj(cx, objArg);
obj = UnwrapObject(obj);
obj = UncheckedUnwrap(obj);
if (!obj || !obj->isWeakMap()) {
*ret = NULL;
return true;