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

Unified Diff: remoting/webapp/crd/js/host_settings.js

Issue 687873003: Allow the background page to get an OAuth token for apps v1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move jsonParseSafe into base namespace. Created 6 years, 2 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
« no previous file with comments | « remoting/webapp/crd/js/host_list.js ('k') | remoting/webapp/crd/js/it2me_helpee_channel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/host_settings.js
diff --git a/remoting/webapp/crd/js/host_settings.js b/remoting/webapp/crd/js/host_settings.js
index c2dee6286371008e7e54b5c9d76962f81f6da2b7..4c659a20ebfc7ce41d9bca4ee0d6edc486b4ca13 100644
--- a/remoting/webapp/crd/js/host_settings.js
+++ b/remoting/webapp/crd/js/host_settings.js
@@ -83,7 +83,7 @@ remoting.HostSettings.loadInternal_ = function(hostId, callback) {
try {
var hosts = allHosts[remoting.HostSettings.KEY_];
if (hosts) {
- result = jsonParseSafe(hosts);
+ result = base.jsonParseSafe(hosts);
if (typeof(result) != 'object') {
console.error("Error loading host settings: Not an object");
result = {};
« no previous file with comments | « remoting/webapp/crd/js/host_list.js ('k') | remoting/webapp/crd/js/it2me_helpee_channel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698