| 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..9bc3b0bd1190ba395ff9452948b1015e6a980316 100644
|
| --- a/content/browser/resources/indexed_db/indexeddb_internals.js
|
| +++ b/content/browser/resources/indexed_db/indexeddb_internals.js
|
| @@ -9,13 +9,11 @@ cr.define('indexeddb', function() {
|
| chrome.send('getAllOrigins');
|
| }
|
|
|
| - function onOriginsReady(origins) {
|
| - console.log('Origins: ', origins);
|
| -
|
| + function onOriginsReady(origins, path) {
|
| 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 {
|
|
|