OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:idbTransaction
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBAny.cpp
101
IDBTransaction
* IDBAny::
idbTransaction
() const
165
IDBAny::IDBAny(PassRefPtr<
IDBTransaction
> value)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp
59
#include "modules/indexeddb/
IDBTransaction
.h"
200
static PassRefPtr<
IDBTransaction
> transactionForDatabase(ExecutionContext* executionContext, IDBDatabase* idbDatabase, const String& objectStoreName, const String& mode =
IDBTransaction
::modeReadOnly())
203
RefPtr<
IDBTransaction
>
idbTransaction
= idbDatabase->transaction(executionContext, objectStoreName, mode, exceptionState);
206
return
idbTransaction
;
209
static PassRefPtr<IDBObjectStore> objectStoreForTransaction(
IDBTransaction
*
idbTransaction
, const String& objectStoreName)
212
RefPtr<IDBObjectStore> idbObjectStore =
idbTransaction
->objectStore(objectStoreName, exceptionState);
488
RefPtr<
IDBTransaction
> idbTransaction = transactionForDatabase(context(), idbDatabase.get(), m_objectStoreName)
[
all
...]
Completed in 24 milliseconds