Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script> | |
| 2 function IndexedDB() { | |
| 3 } | |
| 4 | |
| 5 // Needed to make the inspector not throw an exception. | |
| 6 IndexedDB.prototype.requestDatabaseNames = function() { | |
| 7 return { "databaseNames": [] }; | |
| 8 }; | |
| 9 | |
| 10 this.exports = IndexedDB; | |
| 11 </script> | |
| OLD | NEW |