Index: Source/bindings/v8/V8PerIsolateData.h |
diff --git a/Source/bindings/v8/V8PerIsolateData.h b/Source/bindings/v8/V8PerIsolateData.h |
index 065a12c27c3867f8f5548b4abf42d5dc8c0ad44d..ae876ceabf6ef5ea9f6cb7f16ad63397d169108b 100644 |
--- a/Source/bindings/v8/V8PerIsolateData.h |
+++ b/Source/bindings/v8/V8PerIsolateData.h |
@@ -80,20 +80,6 @@ public: |
v8::Persistent<v8::Value>& ensureLiveRoot(); |
- DOMDataStoreList& allStores() { return m_domDataStoreList; } |
- |
- void registerDOMDataStore(DOMDataStore* domDataStore) |
- { |
- ASSERT(m_domDataStoreList.find(domDataStore) == kNotFound); |
- m_domDataStoreList.append(domDataStore); |
- } |
- |
- void unregisterDOMDataStore(DOMDataStore* domDataStore) |
- { |
- ASSERT(m_domDataStoreList.find(domDataStore) != kNotFound); |
- m_domDataStoreList.remove(m_domDataStoreList.find(domDataStore)); |
- } |
- |
int recursionLevel() const { return m_recursionLevel; } |
int incrementRecursionLevel() { return ++m_recursionLevel; } |
int decrementRecursionLevel() { return --m_recursionLevel; } |
@@ -142,8 +128,6 @@ private: |
ScopedPersistent<v8::FunctionTemplate> m_toStringTemplate; |
OwnPtr<StringCache> m_stringCache; |
- Vector<DOMDataStore*> m_domDataStoreList; |
- |
ScopedPersistent<v8::Value> m_liveRoot; |
ScopedPersistent<v8::Context> m_regexContext; |