| Index: ash/common/system/chromeos/network/vpn_list_view.cc
|
| diff --git a/ash/common/system/chromeos/network/vpn_list_view.cc b/ash/common/system/chromeos/network/vpn_list_view.cc
|
| index 8069efbd484f744204cca548a0b5c11137c73c23..2720c5700b7237609305dc06a11a64b72b59b657 100644
|
| --- a/ash/common/system/chromeos/network/vpn_list_view.cc
|
| +++ b/ash/common/system/chromeos/network/vpn_list_view.cc
|
| @@ -245,11 +245,11 @@ void VPNListNetworkEntry::SetupConnectingItem(const base::string16& text,
|
| } // namespace
|
|
|
| VPNListView::VPNListView(NetworkListDelegate* delegate) : delegate_(delegate) {
|
| - WmShell::Get()->vpn_list()->AddObserver(this);
|
| + Shell::Get()->vpn_list()->AddObserver(this);
|
| }
|
|
|
| VPNListView::~VPNListView() {
|
| - WmShell::Get()->vpn_list()->RemoveObserver(this);
|
| + Shell::Get()->vpn_list()->RemoveObserver(this);
|
| }
|
|
|
| void VPNListView::Update() {
|
| @@ -397,7 +397,7 @@ void VPNListView::AddProvidersAndNetworks(
|
| const chromeos::NetworkStateHandler::NetworkStateList& networks) {
|
| // Get the list of VPN providers enabled in the primary user's profile.
|
| std::vector<VPNProvider> providers =
|
| - WmShell::Get()->vpn_list()->vpn_providers();
|
| + Shell::Get()->vpn_list()->vpn_providers();
|
|
|
| // Add providers with at least one configured network along with their
|
| // networks. Providers are added in the order of their highest priority
|
|
|