| Index: chrome/browser/chromeos/cros/network_library.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/cros/network_library.cc (revision 54340)
|
| +++ chrome/browser/chromeos/cros/network_library.cc (working copy)
|
| @@ -526,12 +526,14 @@
|
| output.append("<html><head><title>About Network</title>");
|
| if (refresh > 0)
|
| output.append("<meta http-equiv=\"refresh\" content=\"" +
|
| - IntToString(refresh) + "\"/>");
|
| + base::IntToString(refresh) + "\"/>");
|
| output.append("</head><body>");
|
| - if (refresh > 0)
|
| - output.append("(Auto-refreshing page every " + IntToString(refresh) + "s)");
|
| - else
|
| + if (refresh > 0) {
|
| + output.append("(Auto-refreshing page every " +
|
| + base::IntToString(refresh) + "s)");
|
| + } else {
|
| output.append("(To auto-refresh this page: about:network/<secs>)");
|
| + }
|
|
|
| output.append("<h3>Ethernet:</h3><table border=1>");
|
| output.append("<tr>" + ToHtmlTableHeader(ðernet_) + "</tr>");
|
|
|