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

Unified Diff: chrome/browser/ui/webui/about_ui.cc

Issue 10386192: Add Freqiency column for wifi in about:network (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/about_ui.cc
diff --git a/chrome/browser/ui/webui/about_ui.cc b/chrome/browser/ui/webui/about_ui.cc
index d1df59a823e53d677278fa2e2b0b3af5b9827130..89fd4fa2f9089a336ee1794860ff4b59098175ef 100644
--- a/chrome/browser/ui/webui/about_ui.cc
+++ b/chrome/browser/ui/webui/about_ui.cc
@@ -369,6 +369,7 @@ std::string ToHtmlTableHeader(const chromeos::Network* network) {
str += WrapWithTH("Encryption");
str += WrapWithTH("Passphrase");
str += WrapWithTH("Identity");
+ str += WrapWithTH("Frequency");
Paul Stewart 2012/05/17 19:19:22 If you're still not submitted, I'd lobby for this
}
if (network->type() == chromeos::TYPE_CELLULAR) {
str += WrapWithTH("Technology");
@@ -407,6 +408,7 @@ std::string ToHtmlTableRow(const chromeos::Network* network) {
str += WrapWithTD(wifi->GetEncryptionString());
str += WrapWithTD(std::string(wifi->passphrase().length(), '*'));
str += WrapWithTD(wifi->identity());
+ str += WrapWithTD(base::IntToString(wifi->frequency()));
}
if (network->type() == chromeos::TYPE_CELLULAR) {
const chromeos::CellularNetwork* cell =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698