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

Unified Diff: ash/common/wm_shell.h

Issue 2525563003: mash: Change CastConfigDelegate to a mojoified CastConfigClient. (Closed)
Patch Set: Now for the external apitests as well. Created 4 years 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 b7adf68b69edb12a1230eb3f5a131ec648ae1cdd..dd7de8181cd33a4f2b10300fc56cebf23d01c9b3 100644
--- a/ash/common/wm_shell.h
+++ b/ash/common/wm_shell.h
@@ -44,6 +44,7 @@ namespace ash {
class AcceleratorController;
class AccessibilityDelegate;
class BrightnessControlDelegate;
+class CastConfigClientProxy;
class FocusCycler;
class ImmersiveContextAsh;
class ImmersiveFullscreenController;
@@ -122,6 +123,10 @@ class ASH_EXPORT WmShell {
return brightness_control_delegate_.get();
}
+ CastConfigClientProxy* cast_config_client() {
+ return cast_config_client_.get();
+ }
+
FocusCycler* focus_cycler() { return focus_cycler_.get(); }
KeyboardBrightnessControlDelegate* keyboard_brightness_control_delegate() {
@@ -479,6 +484,7 @@ class ASH_EXPORT WmShell {
std::unique_ptr<AcceleratorController> accelerator_controller_;
std::unique_ptr<AccessibilityDelegate> accessibility_delegate_;
std::unique_ptr<BrightnessControlDelegate> brightness_control_delegate_;
+ std::unique_ptr<CastConfigClientProxy> cast_config_client_;
std::unique_ptr<FocusCycler> focus_cycler_;
std::unique_ptr<ImmersiveContextAsh> immersive_context_;
std::unique_ptr<KeyboardBrightnessControlDelegate>

Powered by Google App Engine
This is Rietveld 408576698