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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/resources/indexed_db/indexeddb_internals.js
diff --git a/content/browser/resources/indexed_db/indexeddb_internals.js b/content/browser/resources/indexed_db/indexeddb_internals.js
index 9f589e32b0b917e45c11bbf4e813b1e01b9e826b..aa37b94bf89090d797a95a270596e14740cea7a9 100644
--- a/content/browser/resources/indexed_db/indexeddb_internals.js
+++ b/content/browser/resources/indexed_db/indexeddb_internals.js
@@ -9,13 +9,13 @@ cr.define('indexeddb', function() {
chrome.send('getAllOrigins');
}
- function onOriginsReady(origins) {
- console.log('Origins: ', origins);
+ function onOriginsReady(origins, path) {
+ console.log('Origins: ', origins, path);
jsbell 2013/04/12 21:25:59 Might want to remove this now.
var template = jstGetTemplate('indexeddb-list-template');
var container = $('indexeddb-list');
container.appendChild(template);
- jstProcess(new JsEvalContext(origins), template);
+ jstProcess(new JsEvalContext({ idbs: origins, path: path}), template);
}
return {

Powered by Google App Engine
This is Rietveld 408576698