| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "ash/mus/window_manager.h" | 5 #include "ash/mus/window_manager.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 } | 314 } |
| 315 return name == ui::mojom::WindowManager::kAppIcon_Property || | 315 return name == ui::mojom::WindowManager::kAppIcon_Property || |
| 316 name == ui::mojom::WindowManager::kShowState_Property || | 316 name == ui::mojom::WindowManager::kShowState_Property || |
| 317 name == ui::mojom::WindowManager::kPreferredSize_Property || | 317 name == ui::mojom::WindowManager::kPreferredSize_Property || |
| 318 name == ui::mojom::WindowManager::kResizeBehavior_Property || | 318 name == ui::mojom::WindowManager::kResizeBehavior_Property || |
| 319 name == ui::mojom::WindowManager::kShelfItemType_Property || | 319 name == ui::mojom::WindowManager::kShelfItemType_Property || |
| 320 name == ui::mojom::WindowManager::kWindowIcon_Property || | 320 name == ui::mojom::WindowManager::kWindowIcon_Property || |
| 321 name == ui::mojom::WindowManager::kWindowTitle_Property; | 321 name == ui::mojom::WindowManager::kWindowTitle_Property; |
| 322 } | 322 } |
| 323 | 323 |
| 324 void WindowManager::OnWmSetCanFocus(aura::Window* window, bool can_focus) { |
| 325 NonClientFrameController* non_client_frame_controller = |
| 326 NonClientFrameController::Get(window); |
| 327 if (non_client_frame_controller) |
| 328 non_client_frame_controller->set_can_activate(can_focus); |
| 329 } |
| 330 |
| 324 aura::Window* WindowManager::OnWmCreateTopLevelWindow( | 331 aura::Window* WindowManager::OnWmCreateTopLevelWindow( |
| 325 ui::mojom::WindowType window_type, | 332 ui::mojom::WindowType window_type, |
| 326 std::map<std::string, std::vector<uint8_t>>* properties) { | 333 std::map<std::string, std::vector<uint8_t>>* properties) { |
| 327 if (window_type == ui::mojom::WindowType::UNKNOWN) { | 334 if (window_type == ui::mojom::WindowType::UNKNOWN) { |
| 328 LOG(WARNING) << "Request to create top level of unknown type, failing"; | 335 LOG(WARNING) << "Request to create top level of unknown type, failing"; |
| 329 return nullptr; | 336 return nullptr; |
| 330 } | 337 } |
| 331 | 338 |
| 332 return CreateAndParentTopLevelWindow(this, window_type, properties); | 339 return CreateAndParentTopLevelWindow(this, window_type, properties); |
| 333 } | 340 } |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 bool WindowManager::IsWindowActive(aura::Window* window) { | 455 bool WindowManager::IsWindowActive(aura::Window* window) { |
| 449 return Shell::GetInstance()->activation_client()->GetActiveWindow() == window; | 456 return Shell::GetInstance()->activation_client()->GetActiveWindow() == window; |
| 450 } | 457 } |
| 451 | 458 |
| 452 void WindowManager::OnWmDeactivateWindow(aura::Window* window) { | 459 void WindowManager::OnWmDeactivateWindow(aura::Window* window) { |
| 453 Shell::GetInstance()->activation_client()->DeactivateWindow(window); | 460 Shell::GetInstance()->activation_client()->DeactivateWindow(window); |
| 454 } | 461 } |
| 455 | 462 |
| 456 } // namespace mus | 463 } // namespace mus |
| 457 } // namespace ash | 464 } // namespace ash |
| OLD | NEW |