Searched defs:createObjectStore (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/content/test/data/indexeddb/
H A Dkey_path_test.js43 function createObjectStore() function
45 debug('createObjectStore');
47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'});
54 indexedDBTest(createObjectStore);
/external/chromium_org/content/child/indexed_db/
H A Dproxy_webidbdatabase_impl.cc51 void RendererWebIDBDatabaseImpl::createObjectStore( function in class:content::RendererWebIDBDatabaseImpl
/external/chromium_org/third_party/WebKit/Source/web/
H A DIDBDatabaseBackendProxy.cpp61 void IDBDatabaseBackendProxy::createObjectStore(int64_t transactionId, int64_t objectStoreId, const String& name, const IDBKeyPath& keyPath, bool autoIncrement) function in class:WebKit::IDBDatabaseBackendProxy
64 m_webIDBDatabase->createObjectStore(transactionId, objectStoreId, name, keyPath, autoIncrement);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBDatabase.h47 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBDatabase
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBDatabase.cpp168 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const Dictionary& options, ExceptionState& es) function in class:WebCore::IDBDatabase
183 return createObjectStore(name, keyPath, autoIncrement, es);
186 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& es) function in class:WebCore::IDBDatabase
188 IDB_TRACE("IDBDatabase::createObjectStore");
219 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);

Completed in 651 milliseconds