summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/dataview.js
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/resources/net_internals/dataview.js')
-rw-r--r--chrome/browser/resources/net_internals/dataview.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/resources/net_internals/dataview.js b/chrome/browser/resources/net_internals/dataview.js
index a7899c8..41f5b5661 100644
--- a/chrome/browser/resources/net_internals/dataview.js
+++ b/chrome/browser/resources/net_internals/dataview.js
@@ -54,7 +54,8 @@ DataView.prototype.onExportToText_ = function() {
text.push('----------------------------------------------');
text.push('');
- text.push(g_browser.proxySettings_.currentData_.effective);
+ text.push(proxySettingsToString(
+ g_browser.proxySettings_.currentData_.effective));
text.push('');
text.push('----------------------------------------------');
@@ -62,7 +63,8 @@ DataView.prototype.onExportToText_ = function() {
text.push('----------------------------------------------');
text.push('');
- text.push(g_browser.proxySettings_.currentData_.original);
+ text.push(proxySettingsToString(
+ g_browser.proxySettings_.currentData_.original));
text.push('');
text.push('----------------------------------------------');