Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index d6adf6210f3e5dfd8bc3594a1d5b7d5808cf4ab0..70a39503eccf60cd83381edef4bf46dfce0b21d4 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -668,13 +668,6 @@ void V8::MarkIndependent(i::Object** object) { |
} |
-void V8::MarkIndependent(i::Isolate* isolate, i::Object** object) { |
- ASSERT(isolate == i::Isolate::Current()); |
- LOG_API(isolate, "MarkIndependent"); |
- isolate->global_handles()->MarkIndependent(object); |
-} |
- |
- |
void V8::MarkPartiallyDependent(i::Object** object) { |
i::Isolate* isolate = i::Isolate::Current(); |
LOG_API(isolate, "MarkPartiallyDependent"); |
@@ -682,13 +675,6 @@ void V8::MarkPartiallyDependent(i::Object** object) { |
} |
-void V8::MarkPartiallyDependent(i::Isolate* isolate, i::Object** object) { |
- ASSERT(isolate == i::Isolate::Current()); |
- LOG_API(isolate, "MarkPartiallyDependent"); |
- isolate->global_handles()->MarkPartiallyDependent(object); |
-} |
- |
- |
bool V8::IsGlobalIndependent(i::Object** obj) { |
i::Isolate* isolate = i::Isolate::Current(); |
LOG_API(isolate, "IsGlobalIndependent"); |
@@ -697,14 +683,6 @@ bool V8::IsGlobalIndependent(i::Object** obj) { |
} |
-bool V8::IsGlobalIndependent(i::Isolate* isolate, i::Object** obj) { |
- ASSERT(isolate == i::Isolate::Current()); |
- LOG_API(isolate, "IsGlobalIndependent"); |
- if (!isolate->IsInitialized()) return false; |
- return i::GlobalHandles::IsIndependent(obj); |
-} |
- |
- |
bool V8::IsGlobalNearDeath(i::Object** obj) { |
i::Isolate* isolate = i::Isolate::Current(); |
LOG_API(isolate, "IsGlobalNearDeath"); |