Chromium Code Reviews| 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); | 13 console.log('Origins: ', origins, path); |
|
jsbell
2013/04/12 21:25:59
Might want to remove this now.
| |
| 14 | 14 |
| 15 var template = jstGetTemplate('indexeddb-list-template'); | 15 var template = jstGetTemplate('indexeddb-list-template'); |
| 16 var container = $('indexeddb-list'); | 16 var container = $('indexeddb-list'); |
| 17 container.appendChild(template); | 17 container.appendChild(template); |
| 18 jstProcess(new JsEvalContext(origins), template); | 18 jstProcess(new JsEvalContext({ idbs: origins, path: path}), template); |
| 19 } | 19 } |
| 20 | 20 |
| 21 return { | 21 return { |
| 22 initialize: initialize, | 22 initialize: initialize, |
| 23 onOriginsReady: onOriginsReady, | 23 onOriginsReady: onOriginsReady, |
| 24 }; | 24 }; |
| 25 }); | 25 }); |
| 26 | 26 |
| 27 document.addEventListener('DOMContentLoaded', indexeddb.initialize); | 27 document.addEventListener('DOMContentLoaded', indexeddb.initialize); |
| OLD | NEW |