diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-08 22:15:22 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-08 22:15:22 +0000 |
commit | 490e46f1129be84433459bf5cc15d014dd8dabbb (patch) | |
tree | 2c7c8d205dca2393caadf16ac91ef4b44aefed0c /content/browser/resources/indexed_db/indexeddb_internals.js | |
parent | 72a23be5e770a26f8ee519441fcba12c8229c5b0 (diff) | |
download | chromium_src-490e46f1129be84433459bf5cc15d014dd8dabbb.zip chromium_src-490e46f1129be84433459bf5cc15d014dd8dabbb.tar.gz chromium_src-490e46f1129be84433459bf5cc15d014dd8dabbb.tar.bz2 |
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
Diffstat (limited to 'content/browser/resources/indexed_db/indexeddb_internals.js')
-rw-r--r-- | content/browser/resources/indexed_db/indexeddb_internals.js | 17 |
1 files changed, 17 insertions, 0 deletions
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); |