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

Unified Diff: src/api.cc

Issue 39573002: Fix r17253. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index a76882469f26ba965fa6fec2010c7775f9a2a7e8..0bb374f2dc69bea8e712d4962363e835bfbb80bc 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -6382,7 +6382,6 @@ void Isolate::SetObjectGroupId(internal::Object** object, UniqueId id) {
internal_isolate->global_handles()->SetObjectGroupId(
v8::internal::Handle<v8::internal::Object>(object).location(),
id);
- internal_isolate->global_handles()->SetObjectGroupId(object, id);
}
@@ -6391,7 +6390,6 @@ void Isolate::SetReferenceFromGroup(UniqueId id, internal::Object** object) {
internal_isolate->global_handles()->SetReferenceFromGroup(
id,
v8::internal::Handle<v8::internal::Object>(object).location());
- internal_isolate->global_handles()->SetReferenceFromGroup(id, object);
}
« 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