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

Unified Diff: chrome/browser/ui/ash/system_tray_client.cc

Issue 2913343002: Start removing deprecated Options UI code (Closed)
Patch Set: Created 3 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
Index: chrome/browser/ui/ash/system_tray_client.cc
diff --git a/chrome/browser/ui/ash/system_tray_client.cc b/chrome/browser/ui/ash/system_tray_client.cc
index c4ff0ae233c295b4022f1083ece0c879ea8409e4..9501edecc0a38ffedbdfd28724d0ec505e729856 100644
--- a/chrome/browser/ui/ash/system_tray_client.cc
+++ b/chrome/browser/ui/ash/system_tray_client.cc
@@ -415,9 +415,7 @@ void SystemTrayClient::ShowNetworkSettingsHelper(const std::string& network_id,
std::string page = chrome::kInternetSubPage;
if (!network_id.empty()) {
- if (base::FeatureList::IsEnabled(features::kMaterialDesignSettings))
- page = chrome::kNetworkDetailSubPage;
- page += "?guid=" + net::EscapeUrlEncodedData(network_id, true);
+ page = chrome::kNetworkDetailSubPage + "?guid=" + net::EscapeUrlEncodedData(network_id, true);
dpapad 2017/06/01 00:12:54 Nit: This seems more than 80 columns.
Dan Beam 2017/06/03 00:11:02 Done.
if (show_configure)
page += "&showConfigure=true";
}

Powered by Google App Engine
This is Rietveld 408576698