Searched defs:deleteObjectStore (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBDatabase.h66 virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBDatabase
/external/webkit/Source/WebKit/chromium/src/
H A DIDBDatabaseBackendProxy.cpp89 void IDBDatabaseBackendProxy::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec) function in class:WebKit::IDBDatabaseBackendProxy
94 m_webIDBDatabase->deleteObjectStore(name, *transactionProxy->getWebIDBTransaction(), ec);
H A DWebIDBDatabaseImpl.cpp79 void WebIDBDatabaseImpl::deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) function in class:WebKit::WebIDBDatabaseImpl
81 m_databaseBackend->deleteObjectStore(name, transaction.getIDBTransactionBackendInterface(), ec);
/external/webkit/Source/WebCore/storage/
H A DIDBDatabase.cpp96 void IDBDatabase::deleteObjectStore(const String& name, ExceptionCode& ec) function in class:WebCore::IDBDatabase
103 m_backend->deleteObjectStore(name, m_setVersionTransaction->backend(), ec);
H A DIDBDatabaseBackendImpl.cpp142 void IDBDatabaseBackendImpl::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec) function in class:WebCore::IDBDatabaseBackendImpl
161 database->m_backingStore->deleteObjectStore(database->id(), objectStore->id());
H A DIDBSQLiteBackingStore.cpp294 void IDBSQLiteBackingStore::deleteObjectStore(int64_t, int64_t objectStoreId) function in class:WebCore::IDBSQLiteBackingStore
H A DIDBLevelDBBackingStore.cpp1733 void IDBLevelDBBackingStore::deleteObjectStore(int64_t databaseId, int64_t objectStoreId) function in class:WebCore::IDBLevelDBBackingStore

Completed in 130 milliseconds