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

Unified Diff: ash/mus/shell_delegate_mus.h

Issue 2154523002: Move AccessibilityDelegate ownership to ash::WmShell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@setmediadelegate
Patch Set: fix mash_unittests Created 4 years, 5 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
« no previous file with comments | « ash/mus/bridge/wm_shell_mus.cc ('k') | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/shell_delegate_mus.h
diff --git a/ash/mus/shell_delegate_mus.h b/ash/mus/shell_delegate_mus.h
index 16614fdaab8ca76e11c7b22acb87f0717493b6a2..aa1c8d0faf98fd19319ada211f8d2da2bda554a9 100644
--- a/ash/mus/shell_delegate_mus.h
+++ b/ash/mus/shell_delegate_mus.h
@@ -14,12 +14,17 @@ namespace app_list {
class AppListPresenter;
}
+namespace shell {
+class Connector;
+}
+
namespace ash {
class ShellDelegateMus : public ShellDelegate {
public:
- explicit ShellDelegateMus(
- std::unique_ptr<app_list::AppListPresenter> app_list_presenter);
+ ShellDelegateMus(
+ std::unique_ptr<app_list::AppListPresenter> app_list_presenter,
+ shell::Connector* connector);
~ShellDelegateMus() override;
bool IsFirstRunAfterBoot() const override;
@@ -51,6 +56,7 @@ class ShellDelegateMus : public ShellDelegate {
private:
std::unique_ptr<app_list::AppListPresenter> app_list_presenter_;
+ shell::Connector* connector_;
DISALLOW_COPY_AND_ASSIGN(ShellDelegateMus);
};
« no previous file with comments | « ash/mus/bridge/wm_shell_mus.cc ('k') | ash/mus/shell_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698