Re: [IndexedDB] API to enumerate databases (#31)

FWIW, based on early feedback when IDB was shiny and new, Chrome implemented/shipped a prefixed API for this:
```webidl
partial interface IDBFactory {
  IDBRequest webkitGetDatabaseNames();
};
```
Result is a `DOMStringList` (see #28) of the names, purely a snapshot at the time the request is processed. 


---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/31#issuecomment-129594479

Received on Monday, 10 August 2015 20:21:11 UTC