Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | |
|
Rico
2011/01/04 11:15:31
Unintentional extra line?
Lasse Reichstein
2011/01/04 12:14:36
Removed.
| |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 2 // Copyright 2010 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
| 4 // met: | 5 // met: |
| 5 // | 6 // |
| 6 // * Redistributions of source code must retain the above copyright | 7 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 10 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 11 // disclaimer in the documentation and/or other materials provided |
| (...skipping 5125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 5136 | 5137 |
| 5137 | 5138 |
| 5138 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { | 5139 char* HandleScopeImplementer::Iterate(ObjectVisitor* v, char* storage) { |
| 5139 HandleScopeImplementer* thread_local = | 5140 HandleScopeImplementer* thread_local = |
| 5140 reinterpret_cast<HandleScopeImplementer*>(storage); | 5141 reinterpret_cast<HandleScopeImplementer*>(storage); |
| 5141 thread_local->IterateThis(v); | 5142 thread_local->IterateThis(v); |
| 5142 return storage + ArchiveSpacePerThread(); | 5143 return storage + ArchiveSpacePerThread(); |
| 5143 } | 5144 } |
| 5144 | 5145 |
| 5145 } } // namespace v8::internal | 5146 } } // namespace v8::internal |
| OLD | NEW |