HomeSort by relevance Sort by last modified time
    Searched defs:ClearObjectStore (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/content/browser/indexed_db/
indexed_db_fake_backing_store.cc 48 bool IndexedDBFakeBackingStore::ClearObjectStore(Transaction*,
indexed_db_backing_store.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 706 class ClearObjectStore : public ExecutableWithDatabase {
708 static PassRefPtr<ClearObjectStore> create(ExecutionContext* context, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
710 return adoptRef(new ClearObjectStore(context, objectStoreName, requestCallback));
713 ClearObjectStore(ExecutionContext* context, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
753 void InspectorIndexedDBAgent::clearObjectStore(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback)
769 RefPtr<ClearObjectStore> clearObjectStore = ClearObjectStore::create(document, objectStoreName, requestCallback);
770 clearObjectStore->start(idbFactory, document->securityOrigin(), databaseName);

Completed in 482 milliseconds