Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Unified Diff: include/v8.h

Issue 2642743008: [api] Mark functions related to object grouping as DEPRECATED (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 8ef718bd47e303860eb54511b6ee294c06a2bc32..74facf11129e7b3ea6e6901fa1730d31f9e141d7 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -6794,9 +6794,9 @@ class V8_EXPORT Isolate {
* for partially dependent handles only.
*/
template <typename T>
- V8_DEPRECATE_SOON("Use EmbedderHeapTracer",
- void SetObjectGroupId(const Persistent<T>& object,
- UniqueId id));
+ V8_DEPRECATED("Use EmbedderHeapTracer",
+ void SetObjectGroupId(const Persistent<T>& object,
+ UniqueId id));
/**
* Allows the host application to declare implicit references from an object
@@ -6806,9 +6806,9 @@ class V8_EXPORT Isolate {
* callback function.
*/
template <typename T>
- V8_DEPRECATE_SOON("Use EmbedderHeapTracer",
- void SetReferenceFromGroup(UniqueId id,
- const Persistent<T>& child));
+ V8_DEPRECATED("Use EmbedderHeapTracer",
+ void SetReferenceFromGroup(UniqueId id,
+ const Persistent<T>& child));
/**
* Allows the host application to declare implicit references from an object
@@ -6817,9 +6817,9 @@ class V8_EXPORT Isolate {
* is intended to be used in the before-garbage-collection callback function.
*/
template <typename T, typename S>
- V8_DEPRECATE_SOON("Use EmbedderHeapTracer",
- void SetReference(const Persistent<T>& parent,
- const Persistent<S>& child));
+ V8_DEPRECATED("Use EmbedderHeapTracer",
+ void SetReference(const Persistent<T>& parent,
+ const Persistent<S>& child));
typedef void (*GCCallback)(Isolate* isolate, GCType type,
GCCallbackFlags flags);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698