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

  /external/webkit/Source/WebKit/chromium/public/
WebIDBDatabase.h 66 virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/webkit/Source/WebKit/chromium/src/
IDBDatabaseBackendProxy.cpp 89 void IDBDatabaseBackendProxy::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
94 m_webIDBDatabase->deleteObjectStore(name, *transactionProxy->getWebIDBTransaction(), ec);
WebIDBDatabaseImpl.cpp 79 void WebIDBDatabaseImpl::deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec)
81 m_databaseBackend->deleteObjectStore(name, transaction.getIDBTransactionBackendInterface(), ec);
  /external/webkit/Source/WebCore/storage/
IDBDatabase.cpp 96 void IDBDatabase::deleteObjectStore(const String& name, ExceptionCode& ec)
103 m_backend->deleteObjectStore(name, m_setVersionTransaction->backend(), ec);
IDBDatabaseBackendImpl.cpp 142 void IDBDatabaseBackendImpl::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec)
161 database->m_backingStore->deleteObjectStore(database->id(), objectStore->id());
IDBSQLiteBackingStore.cpp 294 void IDBSQLiteBackingStore::deleteObjectStore(int64_t, int64_t objectStoreId)
    [all...]
IDBLevelDBBackingStore.cpp     [all...]

Completed in 64 milliseconds