Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: ash/common/wm_shell.h

Issue 2513673004: Reland: chromeos: Convert ash VPNDelegate interface to mojo (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
};

Powered by Google App Engine
This is Rietveld 408576698