diff options
Diffstat (limited to 'remoting/webapp/host_settings.js')
-rw-r--r-- | remoting/webapp/host_settings.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/webapp/host_settings.js b/remoting/webapp/host_settings.js index 65b5fdd..9fa43b6 100644 --- a/remoting/webapp/host_settings.js +++ b/remoting/webapp/host_settings.js @@ -60,7 +60,7 @@ remoting.HostSettings.save = function(hostId, options, opt_callback) { allHosts[hostId] = requestedHost; var newSettings = {}; newSettings[remoting.HostSettings.KEY_] = JSON.stringify(allHosts); - remoting.storage.local.set(newSettings, opt_callback); + chrome.storage.local.set(newSettings, opt_callback); }; remoting.HostSettings.loadInternal_(hostId, onDone); }; @@ -96,7 +96,7 @@ remoting.HostSettings.loadInternal_ = function(hostId, callback) { } callback({}, /** @type {Object} */ (result)); }; - remoting.storage.local.get(remoting.HostSettings.KEY_, onDone); + chrome.storage.local.get(remoting.HostSettings.KEY_, onDone); }; /** @type {string} @private */ |