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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBAny.cpp 27 #include "modules/indexeddb/IDBAny.h"
37 IDBAny* IDBAny::createUndefined()
39 return new IDBAny(UndefinedType);
42 IDBAny* IDBAny::createNull()
44 return new IDBAny(NullType);
47 IDBAny* IDBAny::createString(const String& value)
49 return new IDBAny(value)
    [all...]
IDBAny.h 55 class IDBAny : public GarbageCollectedFinalized<IDBAny> {
57 static IDBAny* createUndefined();
58 static IDBAny* createNull();
59 static IDBAny* createString(const String&);
61 static IDBAny* create(T* idbObject)
63 return new IDBAny(idbObject);
66 static IDBAny* create(const T& idbObject)
68 return new IDBAny(idbObject);
70 static IDBAny* create(PassRefPtr<SharedBuffer> value, const Vector<blink::WebBlobInfo>* blobInfo
    [all...]

Completed in 427 milliseconds