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

Unified Diff: src/transitions-inl.h

Issue 10908237: Moving the WhitenessWitness back to DescriptorArray. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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 | « src/transitions.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/transitions-inl.h
diff --git a/src/transitions-inl.h b/src/transitions-inl.h
index fd97ad25ab57d3946245b9e40c618083e2cbd1c4..517e6423ad24ad22d15a613e1d947f22da3245cf 100644
--- a/src/transitions-inl.h
+++ b/src/transitions-inl.h
@@ -200,16 +200,9 @@ int TransitionArray::Search(String* name) {
}
-void TransitionArray::Set(int transition_number,
- String* key,
- Map* target,
- const WhitenessWitness&) {
- NoIncrementalWriteBarrierSet(this,
- ToKeyIndex(transition_number),
- key);
- NoIncrementalWriteBarrierSet(this,
- ToTargetIndex(transition_number),
- target);
+void TransitionArray::Set(int transition_number, String* key, Map* target) {
Michael Starzinger 2012/09/14 11:18:08 Now that this method no longer takes a WhitenessWi
Toon Verwaest 2012/09/14 12:28:04 Done.
+ NoIncrementalWriteBarrierSet(this, ToKeyIndex(transition_number), key);
+ NoIncrementalWriteBarrierSet(this, ToTargetIndex(transition_number), target);
}
« no previous file with comments | « src/transitions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698