| 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..635d767c8992613c4027947ac7eb624f909c3308 100644
|
| --- a/chrome/browser/ui/ash/system_tray_client.cc
|
| +++ b/chrome/browser/ui/ash/system_tray_client.cc
|
| @@ -8,7 +8,6 @@
|
| #include "ash/public/cpp/shell_window_ids.h"
|
| #include "ash/public/interfaces/constants.mojom.h"
|
| #include "ash/shell.h"
|
| -#include "base/feature_list.h"
|
| #include "base/logging.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/metrics/user_metrics.h"
|
| @@ -35,7 +34,6 @@
|
| #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
|
| #include "chrome/browser/ui/singleton_tabs.h"
|
| #include "chrome/browser/upgrade_detector.h"
|
| -#include "chrome/common/chrome_features.h"
|
| #include "chrome/common/url_constants.h"
|
| #include "chromeos/dbus/dbus_thread_manager.h"
|
| #include "chromeos/dbus/session_manager_client.h"
|
| @@ -415,9 +413,9 @@ 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;
|
| + page += "?guid=";
|
| + page += net::EscapeUrlEncodedData(network_id, true);
|
| if (show_configure)
|
| page += "&showConfigure=true";
|
| }
|
|
|