OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IndexedDBKeyPath
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/content/common/indexed_db/
indexed_db_key_path.cc
15
IndexedDBKeyPath
::
IndexedDBKeyPath
() : type_(WebIDBKeyPathTypeNull) {}
17
IndexedDBKeyPath
::
IndexedDBKeyPath
(const base::string16& string)
20
IndexedDBKeyPath
::
IndexedDBKeyPath
(const std::vector<base::string16>& array)
23
IndexedDBKeyPath
::~
IndexedDBKeyPath
() {}
25
const std::vector<base::string16>&
IndexedDBKeyPath
::array() const {
30
const base::string16&
IndexedDBKeyPath
::string() const
[
all
...]
indexed_db_key_path.h
17
class CONTENT_EXPORT
IndexedDBKeyPath
{
19
IndexedDBKeyPath
(); // Defaults to blink::WebIDBKeyPathTypeNull.
20
explicit
IndexedDBKeyPath
(const base::string16&);
21
explicit
IndexedDBKeyPath
(const std::vector<base::string16>&);
22
~
IndexedDBKeyPath
();
25
bool operator==(const
IndexedDBKeyPath
& other) const;
Completed in 29 milliseconds