Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index 2b096054f3718d0436837aba3db5e2525e9f2ec9..a77a7fd98bc8246a011bc599fa233021bf5fb37b 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -563,7 +563,8 @@ RUNTIME_FUNCTION(Runtime_GetOwnPropertyKeys) { |
Handle<FixedArray> keys; |
ASSIGN_RETURN_FAILURE_ON_EXCEPTION( |
isolate, keys, |
- KeyAccumulator::GetKeys(object, OWN_ONLY, filter, CONVERT_TO_STRING)); |
+ KeyAccumulator::GetKeys(object, KeyCollectionMode::OWN_ONLY, filter, |
+ GetKeysConversion::CONVERT_TO_STRING)); |
return *isolate->factory()->NewJSArrayWithElements(keys); |
} |