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

Unified Diff: chrome/browser/ui/webui/chromeos/about_network.cc

Issue 11614035: Improve NetworkStateHandler API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separate out OnDefaultNetworkChanged and move kMatchType* to NetworkStateHandler Created 8 years 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
Index: chrome/browser/ui/webui/chromeos/about_network.cc
diff --git a/chrome/browser/ui/webui/chromeos/about_network.cc b/chrome/browser/ui/webui/chromeos/about_network.cc
index 4336e1db47ffbc82fa1f8275dac85690faff332c..3679f0855396e59d035f77e3882705c211b016dd 100644
--- a/chrome/browser/ui/webui/chromeos/about_network.cc
+++ b/chrome/browser/ui/webui/chromeos/about_network.cc
@@ -242,7 +242,7 @@ std::string NetworkStateToHtmlTableRow(const NetworkState* network) {
std::string str =
WrapWithTD(network->name()) +
WrapWithTD(network->type()) +
- WrapWithTD(network->state()) +
+ WrapWithTD(network->connection_state()) +
WrapWithTD(network->path()) +
WrapWithTD(network->ip_address()) +
WrapWithTD(network->security()) +

Powered by Google App Engine
This is Rietveld 408576698