Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: content/browser/resources/indexed_db/indexeddb_internals.js

Issue 14156003: Support multiple storage partitions in chrome://indexeddb-internals/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698