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); |
}; |