Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Unified Diff: Source/bindings/v8/V8PerIsolateData.h

Issue 182513003: Remove m_domDataStoreList from V8PerIsolateData (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698