OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IDBCursorWithValue
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursorWithValue.cpp
27
#include "modules/indexeddb/
IDBCursorWithValue
.h"
33
PassRefPtr<
IDBCursorWithValue
>
IDBCursorWithValue
::create(PassOwnPtr<blink::WebIDBCursor> backend, IndexedDB::CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
35
return adoptRef(new
IDBCursorWithValue
(backend, direction, request, source, transaction));
38
IDBCursorWithValue
::
IDBCursorWithValue
(PassOwnPtr<blink::WebIDBCursor> backend, IndexedDB::CursorDirection direction, IDBRequest* request, IDBAny* source, IDBTransaction* transaction)
44
IDBCursorWithValue
::~
IDBCursorWithValue
()
IDBCursorWithValue.h
40
class
IDBCursorWithValue
: public IDBCursor {
42
static PassRefPtr<
IDBCursorWithValue
> create(PassOwnPtr<blink::WebIDBCursor>, IndexedDB::CursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
43
virtual ~
IDBCursorWithValue
();
52
IDBCursorWithValue
(PassOwnPtr<blink::WebIDBCursor>, IndexedDB::CursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*);
55
inline
IDBCursorWithValue
* toIDBCursorWithValue(IDBCursor* cursor)
58
return static_cast<
IDBCursorWithValue
*>(cursor);
Completed in 38 milliseconds