Chromium Code Reviews| Index: src/heap.cc |
| diff --git a/src/heap.cc b/src/heap.cc |
| index 0c1cc570cadc66810ec121efb7f29b0f63700c9b..af1759ba65fb68c9ee16c3bde75f087f14950eb2 100644 |
| --- a/src/heap.cc |
| +++ b/src/heap.cc |
| @@ -4336,15 +4336,6 @@ MaybeObject* Heap::AllocateSymbol() { |
| } |
| -MaybeObject* Heap::AllocatePrivateSymbol() { |
| - MaybeObject* maybe = AllocateSymbol(); |
| - Symbol* symbol; |
| - if (!maybe->To(&symbol)) return maybe; |
| - symbol->set_is_private(true); |
| - return symbol; |
| -} |
| - |
| - |
| MaybeObject* Heap::AllocateStruct(InstanceType type) { |
| Map* map; |
| switch (type) { |