Chromium Code Reviews| Index: content/browser/resources/indexed_db/indexeddb_internals.js |
| diff --git a/content/browser/resources/indexed_db/indexeddb_internals.js b/content/browser/resources/indexed_db/indexeddb_internals.js |
| index 9f589e32b0b917e45c11bbf4e813b1e01b9e826b..aa37b94bf89090d797a95a270596e14740cea7a9 100644 |
| --- a/content/browser/resources/indexed_db/indexeddb_internals.js |
| +++ b/content/browser/resources/indexed_db/indexeddb_internals.js |
| @@ -9,13 +9,13 @@ cr.define('indexeddb', function() { |
| chrome.send('getAllOrigins'); |
| } |
| - function onOriginsReady(origins) { |
| - console.log('Origins: ', origins); |
| + function onOriginsReady(origins, path) { |
| + console.log('Origins: ', origins, path); |
|
jsbell
2013/04/12 21:25:59
Might want to remove this now.
|
| var template = jstGetTemplate('indexeddb-list-template'); |
| var container = $('indexeddb-list'); |
| container.appendChild(template); |
| - jstProcess(new JsEvalContext(origins), template); |
| + jstProcess(new JsEvalContext({ idbs: origins, path: path}), template); |
| } |
| return { |