| Index: chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
|
| diff --git a/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h b/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
|
| index 75c1992775e89070e5e2ebf6ea0a6b347504d2eb..9bdb6b9b0a6b2f6cdd57f0347583feb530cbccee 100644
|
| --- a/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
|
| +++ b/chrome/browser/ui/ash/launcher/app_window_launcher_controller.h
|
| @@ -20,7 +20,7 @@ class ActivationClient;
|
| }
|
|
|
| class AppWindowLauncherItemController;
|
| -class ChromeLauncherControllerImpl;
|
| +class ChromeLauncherController;
|
| class Profile;
|
|
|
| class AppWindowLauncherController
|
| @@ -28,7 +28,7 @@ class AppWindowLauncherController
|
| public:
|
| ~AppWindowLauncherController() override;
|
|
|
| - // Called by ChromeLauncherControllerImpl when the active user changed and the
|
| + // Called by ChromeLauncherController when the active user changed and the
|
| // items need to be updated.
|
| virtual void ActiveUserChanged(const std::string& user_email) {}
|
|
|
| @@ -43,16 +43,16 @@ class AppWindowLauncherController
|
| aura::Window* lost_active) override;
|
|
|
| protected:
|
| - explicit AppWindowLauncherController(ChromeLauncherControllerImpl* owner);
|
| + explicit AppWindowLauncherController(ChromeLauncherController* owner);
|
|
|
| - ChromeLauncherControllerImpl* owner() { return owner_; }
|
| + ChromeLauncherController* owner() { return owner_; }
|
|
|
| virtual AppWindowLauncherItemController* ControllerForWindow(
|
| aura::Window* window) = 0;
|
|
|
| private:
|
| // Unowned pointers.
|
| - ChromeLauncherControllerImpl* owner_;
|
| + ChromeLauncherController* owner_;
|
| aura::client::ActivationClient* activation_client_ = nullptr;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppWindowLauncherController);
|
|
|