Index: Source/bindings/v8/V8PerIsolateData.h |
diff --git a/Source/bindings/v8/V8PerIsolateData.h b/Source/bindings/v8/V8PerIsolateData.h |
index 86e22993b9b74c93ca78865120d916d8dfb271a0..a85765d31902edf419765fea0c604f1476643755 100644 |
--- a/Source/bindings/v8/V8PerIsolateData.h |
+++ b/Source/bindings/v8/V8PerIsolateData.h |
@@ -82,20 +82,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; } |
@@ -137,8 +123,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; |