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

  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyPath.cpp 29 #include "modules/indexeddb/IDBKeyPath.h"
40 return WebIDBKeyPath(IDBKeyPath(keyPath));
48 return WebIDBKeyPath(IDBKeyPath(strings));
53 return WebIDBKeyPath(IDBKeyPath());
59 m_private.reset(new IDBKeyPath(keyPath));
82 ASSERT(m_private->type() == IDBKeyPath::ArrayType);
89 ASSERT(m_private->type() == IDBKeyPath::StringType);
93 WebIDBKeyPath::WebIDBKeyPath(const WebCore::IDBKeyPath& value)
94 : m_private(new IDBKeyPath(value))
99 WebIDBKeyPath& WebIDBKeyPath::operator=(const WebCore::IDBKeyPath& value
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.h 43 class IDBKeyPath {
45 IDBKeyPath() : m_type(NullType) { }
46 explicit IDBKeyPath(const String&);
47 explicit IDBKeyPath(const Vector<String>& array);
71 bool operator==(const IDBKeyPath& other) const;

Completed in 44 milliseconds