Bug 1026918, part 2 - Rename js::GetPropertyNames -> GetPropertyKeys. r=efaust.

This commit is contained in:
Jason Orendorff
2014-09-26 19:39:35 -05:00
parent 5823a20a9a
commit 448bc4a4ce
21 changed files with 35 additions and 35 deletions

View File

@@ -594,7 +594,7 @@ WrapperAnswer::RecvGetPropertyNames(const ObjectId &objId, const uint32_t &flags
LOG("%s.getPropertyNames()", ReceiverObj(objId));
AutoIdVector props(cx);
if (!js::GetPropertyNames(cx, obj, flags, &props))
if (!js::GetPropertyKeys(cx, obj, flags, &props))
return fail(cx, rs);
for (size_t i = 0; i < props.length(); i++) {