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

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

Issue 12548014: Enable ash new network status area by default (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests, ash_shell Created 7 years, 9 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
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 012cb4ceea193c7f7fddec5eeb3f4bb2e3da7128..ce372f95dce210d074d5cad43855f06ef5cba725 100644
--- a/chrome/browser/ui/webui/chromeos/about_network.cc
+++ b/chrome/browser/ui/webui/chromeos/about_network.cc
@@ -285,8 +285,8 @@ std::string AboutNetwork(const std::string& query) {
std::string output = GetHeaderHtmlInfo(refresh);
if (network_event_log::IsInitialized())
output += GetHeaderEventLogInfo();
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- ash::switches::kAshEnableNewNetworkStatusArea)) {
+ if (!CommandLine::ForCurrentProcess()->HasSwitch(
+ ash::switches::kAshDisableNewNetworkStatusArea)) {
output += GetNetworkStateHtmlInfo();
} else {
output += GetCrosNetworkHtmlInfo();

Powered by Google App Engine
This is Rietveld 408576698