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

Unified Diff: chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h

Issue 2835063003: mash: Use ChromeLauncherControllerImpl, remove Mus subclass stub. (Closed)
Patch Set: Use CLCImpl for LauncherControllers, etc.; expose ShelfModel pointer. Created 3 years, 8 months 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: chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h
diff --git a/chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h b/chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h
index 5052b651e35a06d9c2611d41ad0f8b5663d5ce7a..c5aed639fd97c26fa6f1f5b6f8bacd555d2d8145 100644
--- a/chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h
+++ b/chrome/browser/ui/views/ash/chrome_browser_main_extra_parts_ash.h
@@ -10,9 +10,13 @@
#include "base/macros.h"
#include "chrome/browser/chrome_browser_main_extra_parts.h"
+namespace ash {
+class ShelfModel;
+}
+
class AshInit;
class CastConfigClientMediaRouter;
-class ChromeLauncherControllerMus;
+class ChromeLauncherControllerImpl;
class ChromeNewWindowClient;
class ChromeShellContentState;
class ImmersiveContextMus;
@@ -38,12 +42,13 @@ class ChromeBrowserMainExtraPartsAsh : public ChromeBrowserMainExtraParts {
void PostMainMessageLoopRun() override;
private:
- std::unique_ptr<ChromeLauncherControllerMus> chrome_launcher_controller_mus_;
+ std::unique_ptr<ChromeLauncherControllerImpl> chrome_launcher_controller_;
std::unique_ptr<ChromeShellContentState> chrome_shell_content_state_;
std::unique_ptr<CastConfigClientMediaRouter> cast_config_client_media_router_;
std::unique_ptr<MediaClient> media_client_;
std::unique_ptr<ImmersiveHandlerFactoryMus> immersive_handler_factory_;
std::unique_ptr<ImmersiveContextMus> immersive_context_;
+ std::unique_ptr<ash::ShelfModel> chrome_shelf_model_;
James Cook 2017/04/26 01:03:26 nit: This and the CLCImpl above need a comment tha
msw 2017/04/26 01:35:15 Done.
std::unique_ptr<SessionControllerClient> session_controller_client_;
std::unique_ptr<SystemTrayClient> system_tray_client_;
std::unique_ptr<ChromeNewWindowClient> new_window_client_;

Powered by Google App Engine
This is Rietveld 408576698