OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <vector> | 10 #include <vector> |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 void StartObserving(Profile* profile); | 94 void StartObserving(Profile* profile); |
95 void StopObserving(Profile* profile); | 95 void StopObserving(Profile* profile); |
96 | 96 |
97 void RegisterApp(AppWindow* app_window); | 97 void RegisterApp(AppWindow* app_window); |
98 void UnregisterApp(AppWindow* app_window, bool close_controller); | 98 void UnregisterApp(AppWindow* app_window, bool close_controller); |
99 | 99 |
100 AppWindow* GetAppWindowForTask(int task_id); | 100 AppWindow* GetAppWindowForTask(int task_id); |
101 | 101 |
102 void AttachControllerToWindowIfNeeded(aura::Window* window); | 102 void AttachControllerToWindowIfNeeded(aura::Window* window); |
103 void AttachControllerToWindowsIfNeeded(); | 103 void AttachControllerToWindowsIfNeeded(); |
| 104 void AttachWindowToMultiUserManager(aura::Window* window); |
104 | 105 |
105 void SetOrientationLockForAppWindow(AppWindow* app_window); | 106 void SetOrientationLockForAppWindow(AppWindow* app_window); |
106 | 107 |
107 // AppWindowLauncherController: | 108 // AppWindowLauncherController: |
108 AppWindowLauncherItemController* ControllerForWindow( | 109 AppWindowLauncherItemController* ControllerForWindow( |
109 aura::Window* window) override; | 110 aura::Window* window) override; |
110 | 111 |
111 // Not owned | 112 // Not owned |
112 ash::ShelfDelegate* shelf_delegate_; | 113 ash::ShelfDelegate* shelf_delegate_; |
113 int active_task_id_ = -1; | 114 int active_task_id_ = -1; |
114 TaskIdToAppWindow task_id_to_app_window_; | 115 TaskIdToAppWindow task_id_to_app_window_; |
115 TaskIdToShelfAppIdMap task_id_to_shelf_app_id_; | 116 TaskIdToShelfAppIdMap task_id_to_shelf_app_id_; |
116 AppControllerMap app_controller_map_; | 117 AppControllerMap app_controller_map_; |
117 std::vector<aura::Window*> observed_windows_; | 118 std::vector<aura::Window*> observed_windows_; |
118 Profile* observed_profile_ = nullptr; | 119 Profile* observed_profile_ = nullptr; |
119 bool observing_shell_ = false; | 120 bool observing_shell_ = false; |
120 | 121 |
121 DISALLOW_COPY_AND_ASSIGN(ArcAppWindowLauncherController); | 122 DISALLOW_COPY_AND_ASSIGN(ArcAppWindowLauncherController); |
122 }; | 123 }; |
123 | 124 |
124 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ | 125 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ |
OLD | NEW |