| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 cr.define('indexeddb', function() { | 5 cr.define('indexeddb', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 function initialize() { | 8 function initialize() { |
| 9 chrome.send('getAllOrigins'); | 9 chrome.send('getAllOrigins'); |
| 10 } | 10 } |
| 11 | 11 |
| 12 function onOriginsReady(origins) { | 12 function onOriginsReady(origins, path) { |
| 13 console.log('Origins: ', origins); | |
| 14 | |
| 15 var template = jstGetTemplate('indexeddb-list-template'); | 13 var template = jstGetTemplate('indexeddb-list-template'); |
| 16 var container = $('indexeddb-list'); | 14 var container = $('indexeddb-list'); |
| 17 container.appendChild(template); | 15 container.appendChild(template); |
| 18 jstProcess(new JsEvalContext(origins), template); | 16 jstProcess(new JsEvalContext({ idbs: origins, path: path}), template); |
| 19 } | 17 } |
| 20 | 18 |
| 21 return { | 19 return { |
| 22 initialize: initialize, | 20 initialize: initialize, |
| 23 onOriginsReady: onOriginsReady, | 21 onOriginsReady: onOriginsReady, |
| 24 }; | 22 }; |
| 25 }); | 23 }); |
| 26 | 24 |
| 27 document.addEventListener('DOMContentLoaded', indexeddb.initialize); | 25 document.addEventListener('DOMContentLoaded', indexeddb.initialize); |
| OLD | NEW |