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"
38 return WebIDBKeyPath(IDBKeyPath(keyPath));
46 return WebIDBKeyPath(IDBKeyPath(strings));
51 return WebIDBKeyPath(IDBKeyPath());
57 m_private.reset(new IDBKeyPath(keyPath));
80 ASSERT(m_private->type() == IDBKeyPath::ArrayType);
87 ASSERT(m_private->type() == IDBKeyPath::StringType);
91 WebIDBKeyPath::WebIDBKeyPath(const IDBKeyPath& value)
92 : m_private(new IDBKeyPath(value))
97 WebIDBKeyPath& WebIDBKeyPath::operator=(const 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 392 milliseconds