| Index: chrome/browser/chromeos/net/network_portal_notification_controller.cc
|
| diff --git a/chrome/browser/chromeos/net/network_portal_notification_controller.cc b/chrome/browser/chromeos/net/network_portal_notification_controller.cc
|
| index 137c3f2eb61074e657213ec38ca235ad2107ddea..aa583c36ec6c088f8756de7cdd84a42fb4d49bee 100644
|
| --- a/chrome/browser/chromeos/net/network_portal_notification_controller.cc
|
| +++ b/chrome/browser/chromeos/net/network_portal_notification_controller.cc
|
| @@ -42,7 +42,7 @@ namespace chromeos {
|
| namespace {
|
|
|
| bool IsPortalNotificationEnabled() {
|
| - return !CommandLine::ForCurrentProcess()->HasSwitch(
|
| + return !base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDisableNetworkPortalNotification);
|
| }
|
|
|
| @@ -101,7 +101,7 @@ void NetworkPortalNotificationControllerDelegate::Click() {
|
| NetworkPortalNotificationController::USER_ACTION_METRIC_CLICKED,
|
| NetworkPortalNotificationController::USER_ACTION_METRIC_COUNT);
|
|
|
| - if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| + if (base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| chromeos::switches::kEnableCaptivePortalBypassProxy)) {
|
| if (controller_)
|
| controller_->ShowDialog();
|
|
|