| 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'); |
| 10 } |
| 9 | 11 |
| 12 function onOriginsReady(origins) { |
| 13 console.log('Origins: ', origins); |
| 14 |
| 15 var template = jstGetTemplate('indexeddb-list-template'); |
| 16 var container = $('indexeddb-list'); |
| 17 container.appendChild(template); |
| 18 jstProcess(new JsEvalContext(origins), template); |
| 10 } | 19 } |
| 11 | 20 |
| 12 return { | 21 return { |
| 13 initialize: initialize, | 22 initialize: initialize, |
| 23 onOriginsReady: onOriginsReady, |
| 14 }; | 24 }; |
| 15 }); | 25 }); |
| 16 | 26 |
| 17 document.addEventListener('DOMContentLoaded', indexeddb.initialize); | 27 document.addEventListener('DOMContentLoaded', indexeddb.initialize); |
| OLD | NEW |