Searched defs:DOMDataStore (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/
H A DDOMDataStore.cpp32 #include "DOMDataStore.h"
85 DOMDataStore::DOMDataStore(DOMData* domData) function in class:WebCore::DOMDataStore
94 WTF::MutexLocker locker(DOMDataStore::allStoresMutex());
95 DOMDataStore::allStores().append(this);
98 DOMDataStore::~DOMDataStore()
100 WTF::MutexLocker locker(DOMDataStore::allStoresMutex());
101 DOMDataStore::allStores().remove(DOMDataStore
[all...]
H A DDOMDataStore.h50 class DOMDataStore;
52 typedef WTF::Vector<DOMDataStore*> DOMDataList;
54 // DOMDataStore
56 // DOMDataStore is the backing store that holds the maps between DOM objects
63 class DOMDataStore { class in namespace:WebCore
64 WTF_MAKE_NONCOPYABLE(DOMDataStore);
75 DOMDataStore(DOMData*);
76 virtual ~DOMDataStore();
78 // A list of all DOMDataStore objects in the current V8 instance (thread). Normally, each World has a DOMDataStore
[all...]

Completed in 83 milliseconds