Bug 1268085 - Remove unused post barrier callbacks r=terrence

This commit is contained in:
Jon Coppeard
2016-04-29 10:44:22 +01:00
parent 6afbb11e1c
commit 2eca49bb45
7 changed files with 1 additions and 98 deletions

View File

@@ -112,9 +112,6 @@ class ObjectToIdMap
using Table = js::GCHashMap<JS::Heap<JSObject*>, ObjectId, Hasher, js::SystemAllocPolicy>;
public:
explicit ObjectToIdMap(JSRuntime* rt);
~ObjectToIdMap();
bool init();
void trace(JSTracer* trc);
void sweep();
@@ -125,7 +122,6 @@ class ObjectToIdMap
void clear();
private:
JSRuntime* rt_;
Table table_;
};