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

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

Issue 14118002: Implement read-only indexedb-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing, nits addressed 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');
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);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698