| 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 a25aaa26b639b893f3ff05c79d630fdba6bb56c0..93b3a32522a9f3ef9c4fbeae29f0f762cef2591e 100644
|
| --- a/chrome/browser/chromeos/net/network_portal_notification_controller.cc
|
| +++ b/chrome/browser/chromeos/net/network_portal_notification_controller.cc
|
| @@ -11,7 +11,7 @@
|
|
|
| #include "ash/common/system/system_notifier.h"
|
| #include "ash/common/system/tray/system_tray_notifier.h"
|
| -#include "ash/common/wm_shell.h"
|
| +#include "ash/shell.h"
|
| #include "base/command_line.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| @@ -300,8 +300,8 @@ void NetworkPortalNotificationController::OnPortalDetectionCompleted(
|
| return;
|
| last_network_guid_ = network->guid();
|
|
|
| - if (ash::WmShell::HasInstance()) {
|
| - ash::WmShell::Get()->system_tray_notifier()->NotifyOnCaptivePortalDetected(
|
| + if (ash::Shell::HasInstance()) {
|
| + ash::Shell::Get()->system_tray_notifier()->NotifyOnCaptivePortalDetected(
|
| network->guid());
|
| }
|
|
|
|
|