diff options
author | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-11 23:58:08 +0000 |
---|---|---|
committer | jamiewalch@chromium.org <jamiewalch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-11 23:58:08 +0000 |
commit | 78aa3b9e5aba26d4b0cc9144b639427d2afcb0b6 (patch) | |
tree | db64ddfead2938e7edaa71b30a028817f54fa9d6 /remoting/webapp/jscompiler_hacks.js | |
parent | 245744c190b650c0be8ae4c48ca24c9bfcb8501b (diff) | |
download | chromium_src-78aa3b9e5aba26d4b0cc9144b639427d2afcb0b6.zip chromium_src-78aa3b9e5aba26d4b0cc9144b639427d2afcb0b6.tar.gz chromium_src-78aa3b9e5aba26d4b0cc9144b639427d2afcb0b6.tar.bz2 |
Use remoting.storage instead of overriding chrome.storage.
BUG=181653
Review URL: https://chromiumcodereview.appspot.com/12667013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187414 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/webapp/jscompiler_hacks.js')
-rw-r--r-- | remoting/webapp/jscompiler_hacks.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/remoting/webapp/jscompiler_hacks.js b/remoting/webapp/jscompiler_hacks.js index 70d984a..d13aa2c 100644 --- a/remoting/webapp/jscompiler_hacks.js +++ b/remoting/webapp/jscompiler_hacks.js @@ -67,12 +67,9 @@ var WebKitMutationObserver = function(callback) {}; @param {Object} options */ WebKitMutationObserver.prototype.observe = function(element, options) {}; -/** @type {Object} */ -chrome.storage = {}; - // TODO(jamiewalch): Flesh this out with the correct type when we're a v2 app. /** @type {remoting.MockStorage} */ -chrome.storage.local = null; +remoting.storage.local = null; /** @type {Object} */ chrome.app.runtime = { |