From 490e46f1129be84433459bf5cc15d014dd8dabbb Mon Sep 17 00:00:00 2001 From: "alecflett@chromium.org" Date: Mon, 8 Apr 2013 22:15:22 +0000 Subject: Stub out chrome://indexeddb-internals This is the just the WebUI code necessary to show HTML at the chrome://indexeddb-internals URL. The page just says "Welcome" to start. BUG=174188 Review URL: https://chromiumcodereview.appspot.com/13230003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192926 0039d316-1c4b-4281-b951-d872f2087c98 --- .../browser/resources/indexed_db/indexeddb_internals.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 content/browser/resources/indexed_db/indexeddb_internals.js (limited to '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 new file mode 100644 index 0000000..045d355 --- /dev/null +++ b/content/browser/resources/indexed_db/indexeddb_internals.js @@ -0,0 +1,17 @@ +// Copyright (c) 2013 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +cr.define('indexeddb', function() { + 'use strict'; + + function initialize() { + + } + + return { + initialize: initialize, + }; +}); + +document.addEventListener('DOMContentLoaded', indexeddb.initialize); -- cgit v1.1