Searched defs:WebIDBKeyPath (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBKeyPath.h39 class WebIDBKeyPath { class in namespace:blink
41 BLINK_EXPORT static WebIDBKeyPath create(const WebString&);
42 BLINK_EXPORT static WebIDBKeyPath create(const WebVector<WebString>&);
43 BLINK_EXPORT static WebIDBKeyPath createNull();
45 WebIDBKeyPath(const WebIDBKeyPath& keyPath) { assign(keyPath); } function in class:blink::WebIDBKeyPath
46 virtual ~WebIDBKeyPath() { reset(); }
47 WebIDBKeyPath& operator=(const WebIDBKeyPath& keyPath)
54 BLINK_EXPORT void assign(const WebIDBKeyPath
[all...]
H A DWebIDBCallbacks.h42 class WebIDBKeyPath;
56 virtual void onSuccess(const WebData&, const WebVector<WebBlobInfo>&, const WebIDBKey&, const WebIDBKeyPath&) { BLINK_ASSERT_NOT_REACHED(); } argument
H A DWebIDBDatabase.h42 class WebIDBKeyPath;
50 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); } argument
59 virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebIDBKeyPath.cpp27 #include "public/platform/WebIDBKeyPath.h"
36 WebIDBKeyPath WebIDBKeyPath::create(const WebString& keyPath)
38 return WebIDBKeyPath(IDBKeyPath(keyPath));
41 WebIDBKeyPath WebIDBKeyPath::create(const WebVector<WebString>& keyPath)
46 return WebIDBKeyPath(IDBKeyPath(strings));
49 WebIDBKeyPath WebIDBKeyPath::createNull()
51 return WebIDBKeyPath(IDBKeyPat
91 WebIDBKeyPath::WebIDBKeyPath(const IDBKeyPath& value) function in class:blink::WebIDBKeyPath
[all...]

Completed in 431 milliseconds