| 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 #include "chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.h" | 4 #include "chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.h" |
| 5 | 5 |
| 6 #include <string> | 6 #include <string> |
| 7 | 7 |
| 8 #include "ash/display/screen_orientation_controller_chromeos.h" | 8 #include "ash/display/screen_orientation_controller_chromeos.h" |
| 9 #include "ash/public/cpp/shelf_model.h" |
| 9 #include "ash/public/cpp/window_properties.h" | 10 #include "ash/public/cpp/window_properties.h" |
| 10 #include "ash/shared/app_types.h" | 11 #include "ash/shared/app_types.h" |
| 11 #include "ash/shelf/shelf_model.h" | |
| 12 #include "ash/shell.h" | 12 #include "ash/shell.h" |
| 13 #include "ash/wm/maximize_mode/maximize_mode_controller.h" | 13 #include "ash/wm/maximize_mode/maximize_mode_controller.h" |
| 14 #include "ash/wm/window_state.h" | 14 #include "ash/wm/window_state.h" |
| 15 #include "ash/wm/window_util.h" | 15 #include "ash/wm/window_util.h" |
| 16 #include "base/bind.h" | 16 #include "base/bind.h" |
| 17 #include "base/memory/ptr_util.h" | 17 #include "base/memory/ptr_util.h" |
| 18 #include "chrome/browser/chromeos/arc/arc_util.h" | 18 #include "chrome/browser/chromeos/arc/arc_util.h" |
| 19 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
| 20 #include "chrome/browser/ui/app_list/arc/arc_app_utils.h" | 20 #include "chrome/browser/ui/app_list/arc/arc_app_utils.h" |
| 21 #include "chrome/browser/ui/ash/launcher/arc_app_window.h" | 21 #include "chrome/browser/ui/ash/launcher/arc_app_window.h" |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 const std::string* arc_app_id = exo::ShellSurface::GetApplicationId(window); | 627 const std::string* arc_app_id = exo::ShellSurface::GetApplicationId(window); |
| 628 if (!arc_app_id) | 628 if (!arc_app_id) |
| 629 return -1; | 629 return -1; |
| 630 | 630 |
| 631 int task_id = -1; | 631 int task_id = -1; |
| 632 if (sscanf(arc_app_id->c_str(), "org.chromium.arc.%d", &task_id) != 1) | 632 if (sscanf(arc_app_id->c_str(), "org.chromium.arc.%d", &task_id) != 1) |
| 633 return -1; | 633 return -1; |
| 634 | 634 |
| 635 return task_id; | 635 return task_id; |
| 636 } | 636 } |
| OLD | NEW |