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

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
« no previous file with comments | « Source/bindings/v8/SerializedScriptValue.cpp ('k') | Source/bindings/v8/WorkerScriptController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/bindings/v8/SerializedScriptValue.cpp ('k') | Source/bindings/v8/WorkerScriptController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698