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

  /external/chromium_org/content/test/data/indexeddb/
key_path_test.js 43 function createObjectStore()
45 debug('createObjectStore');
47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'});
54 indexedDBTest(createObjectStore);
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.cc 50 void WebIDBDatabaseImpl::createObjectStore(long long transaction_id,
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 47 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 172 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const Dictionary& options, ExceptionState& exceptionState)
187 return createObjectStore(name, keyPath, autoIncrement, exceptionState);
190 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& exceptionState)
192 IDB_TRACE("IDBDatabase::createObjectStore");
223 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);

Completed in 357 milliseconds