| Index: ash/common/wm_shell.h
|
| diff --git a/ash/common/wm_shell.h b/ash/common/wm_shell.h
|
| index 2c7a1548972c36a3c193ec513650f6f6a71cd521..101c6a68b9ee5761b3f24f946aabb7f777451c4e 100644
|
| --- a/ash/common/wm_shell.h
|
| +++ b/ash/common/wm_shell.h
|
| @@ -93,6 +93,7 @@ class WindowState;
|
|
|
| #if defined(OS_CHROMEOS)
|
| class LogoutConfirmationController;
|
| +class VpnList;
|
| #endif
|
|
|
| // Similar to ash::Shell. Eventually the two will be merged.
|
| @@ -176,6 +177,8 @@ class ASH_EXPORT WmShell {
|
|
|
| ToastManager* toast_manager() { return toast_manager_.get(); }
|
|
|
| + VpnList* vpn_list() { return vpn_list_.get(); }
|
| +
|
| WallpaperController* wallpaper_controller() {
|
| return wallpaper_controller_.get();
|
| }
|
| @@ -513,6 +516,7 @@ class ASH_EXPORT WmShell {
|
|
|
| #if defined(OS_CHROMEOS)
|
| std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_;
|
| + std::unique_ptr<VpnList> vpn_list_;
|
| #endif
|
| };
|
|
|
|
|