| 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> |
| 11 | 11 |
| 12 #include "ash/common/shell_observer.h" | 12 #include "ash/shell_observer.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" | 14 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" |
| 15 #include "chrome/browser/ui/ash/launcher/app_window_launcher_controller.h" | 15 #include "chrome/browser/ui/ash/launcher/app_window_launcher_controller.h" |
| 16 #include "chrome/browser/ui/ash/launcher/arc_app_shelf_id.h" | 16 #include "chrome/browser/ui/ash/launcher/arc_app_shelf_id.h" |
| 17 #include "mojo/public/cpp/bindings/binding.h" | 17 #include "mojo/public/cpp/bindings/binding.h" |
| 18 #include "ui/aura/env_observer.h" | 18 #include "ui/aura/env_observer.h" |
| 19 #include "ui/aura/window_observer.h" | 19 #include "ui/aura/window_observer.h" |
| 20 | 20 |
| 21 namespace ash { | 21 namespace ash { |
| 22 class ShelfDelegate; | 22 class ShelfDelegate; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 TaskIdToAppWindowInfo task_id_to_app_window_info_; | 124 TaskIdToAppWindowInfo task_id_to_app_window_info_; |
| 125 ShelfGroupToAppControllerMap app_shelf_group_to_controller_map_; | 125 ShelfGroupToAppControllerMap app_shelf_group_to_controller_map_; |
| 126 std::vector<aura::Window*> observed_windows_; | 126 std::vector<aura::Window*> observed_windows_; |
| 127 Profile* observed_profile_ = nullptr; | 127 Profile* observed_profile_ = nullptr; |
| 128 bool observing_shell_ = false; | 128 bool observing_shell_ = false; |
| 129 | 129 |
| 130 DISALLOW_COPY_AND_ASSIGN(ArcAppWindowLauncherController); | 130 DISALLOW_COPY_AND_ASSIGN(ArcAppWindowLauncherController); |
| 131 }; | 131 }; |
| 132 | 132 |
| 133 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ | 133 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_WINDOW_LAUNCHER_CONTROLLER_H_ |
| OLD | NEW |