Commit 3c2bec8d authored by jochen's avatar jochen Committed by Commit bot

Mark HiddenValue API as deprecated

BUG=none
R=vogelheim@chromium.org

Review URL: https://codereview.chromium.org/1459373003

Cr-Commit-Position: refs/heads/master@{#32340}
parent 81e131ce
......@@ -2919,12 +2919,12 @@ class V8_EXPORT Object : public Value {
*/
int GetIdentityHash();
V8_DEPRECATE_SOON("Use v8::Object::SetPrivate instead.",
bool SetHiddenValue(Local<String> key, Local<Value> value));
V8_DEPRECATE_SOON("Use v8::Object::GetPrivate instead.",
Local<Value> GetHiddenValue(Local<String> key));
V8_DEPRECATE_SOON("Use v8::Object::DeletePrivate instead.",
bool DeleteHiddenValue(Local<String> key));
V8_DEPRECATED("Use v8::Object::SetPrivate instead.",
bool SetHiddenValue(Local<String> key, Local<Value> value));
V8_DEPRECATED("Use v8::Object::GetPrivate instead.",
Local<Value> GetHiddenValue(Local<String> key));
V8_DEPRECATED("Use v8::Object::DeletePrivate instead.",
bool DeleteHiddenValue(Local<String> key));
/**
* Clone this object with a fast but shallow copy. Values will point
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment