diff options
Diffstat (limited to 'chrome/browser/resources/net_internals/dataview.js')
-rw-r--r-- | chrome/browser/resources/net_internals/dataview.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/resources/net_internals/dataview.js b/chrome/browser/resources/net_internals/dataview.js index 8032a11..fbbad7d 100644 --- a/chrome/browser/resources/net_internals/dataview.js +++ b/chrome/browser/resources/net_internals/dataview.js @@ -39,9 +39,12 @@ DataView.prototype.onExportToText_ = function() { text.push('Number of actively captured events: ' + g_browser.getAllActivelyCapturedEvents().length); text.push(''); - // TODO(eroman): fill this with proper values. - text.push('Chrome version: ' + 'TODO'); - text.push('Command line switches: ' + 'TODO'); + + text.push('Chrome version: ' + ClientInfo.version + + ' (' + ClientInfo.official + + ' ' + ClientInfo.cl + + ') ' + ClientInfo.version_mod); + text.push('Command line switches: ' + ClientInfo.command_line); text.push(''); text.push('----------------------------------------------'); |