| 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 #include "services/ui/ws/window_manager_state.h" | 5 #include "services/ui/ws/window_manager_state.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/test/test_simple_task_runner.h" | 12 #include "base/test/test_simple_task_runner.h" |
| 13 #include "base/threading/thread_task_runner_handle.h" | 13 #include "base/threading/thread_task_runner_handle.h" |
| 14 #include "services/service_manager/public/interfaces/connector.mojom.h" | 14 #include "services/service_manager/public/interfaces/connector.mojom.h" |
| 15 #include "services/ui/common/event_matcher_util.h" | 15 #include "services/ui/common/accelerator_util.h" |
| 16 #include "services/ui/ws/accelerator.h" | 16 #include "services/ui/ws/accelerator.h" |
| 17 #include "services/ui/ws/display.h" | 17 #include "services/ui/ws/display.h" |
| 18 #include "services/ui/ws/display_manager.h" | 18 #include "services/ui/ws/display_manager.h" |
| 19 #include "services/ui/ws/platform_display.h" | 19 #include "services/ui/ws/platform_display.h" |
| 20 #include "services/ui/ws/platform_display_init_params.h" | 20 #include "services/ui/ws/platform_display_init_params.h" |
| 21 #include "services/ui/ws/server_window_compositor_frame_sink_manager_test_api.h" | 21 #include "services/ui/ws/server_window_compositor_frame_sink_manager_test_api.h" |
| 22 #include "services/ui/ws/test_change_tracker.h" | 22 #include "services/ui/ws/test_change_tracker.h" |
| 23 #include "services/ui/ws/test_server_window_delegate.h" | 23 #include "services/ui/ws/test_server_window_delegate.h" |
| 24 #include "services/ui/ws/test_utils.h" | 24 #include "services/ui/ws/test_utils.h" |
| 25 #include "services/ui/ws/window_manager_access_policy.h" | 25 #include "services/ui/ws/window_manager_access_policy.h" |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 child_window->SetVisible(true); | 224 child_window->SetVisible(true); |
| 225 SetCanFocusUp(child_window); | 225 SetCanFocusUp(child_window); |
| 226 tree()->GetDisplay(child_window)->AddActivationParent(child_window->parent()); | 226 tree()->GetDisplay(child_window)->AddActivationParent(child_window->parent()); |
| 227 ASSERT_TRUE(window_tree()->SetFocus(child_window_id)); | 227 ASSERT_TRUE(window_tree()->SetFocus(child_window_id)); |
| 228 | 228 |
| 229 // Register a pre-accelerator. | 229 // Register a pre-accelerator. |
| 230 uint32_t accelerator_id = 11; | 230 uint32_t accelerator_id = 11; |
| 231 { | 231 { |
| 232 mojom::EventMatcherPtr matcher = ui::CreateKeyMatcher( | 232 mojom::EventMatcherPtr matcher = ui::CreateKeyMatcher( |
| 233 ui::mojom::KeyboardCode::W, ui::mojom::kEventFlagControlDown); | 233 ui::mojom::KeyboardCode::W, ui::mojom::kEventFlagControlDown); |
| 234 |
| 234 ASSERT_TRUE(window_manager_state()->event_dispatcher()->AddAccelerator( | 235 ASSERT_TRUE(window_manager_state()->event_dispatcher()->AddAccelerator( |
| 235 accelerator_id, std::move(matcher))); | 236 accelerator_id, std::move(matcher))); |
| 236 } | 237 } |
| 237 TestChangeTracker* tracker = wm_client()->tracker(); | 238 TestChangeTracker* tracker = wm_client()->tracker(); |
| 238 tracker->changes()->clear(); | 239 tracker->changes()->clear(); |
| 239 TestChangeTracker* tracker2 = window_tree_client()->tracker(); | 240 TestChangeTracker* tracker2 = window_tree_client()->tracker(); |
| 240 tracker2->changes()->clear(); | 241 tracker2->changes()->clear(); |
| 241 | 242 |
| 242 // Send an ensure only the pre accelerator is called. | 243 // Send an ensure only the pre accelerator is called. |
| 243 ui::KeyEvent key(ui::ET_KEY_PRESSED, ui::VKEY_W, ui::EF_CONTROL_DOWN); | 244 ui::KeyEvent key(ui::ET_KEY_PRESSED, ui::VKEY_W, ui::EF_CONTROL_DOWN); |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 562 ASSERT_EQ(1u, tree->roots().size()); | 563 ASSERT_EQ(1u, tree->roots().size()); |
| 563 ClientWindowId root_client_id; | 564 ClientWindowId root_client_id; |
| 564 ASSERT_TRUE(tree->IsWindowKnown(*(tree->roots().begin()), &root_client_id)); | 565 ASSERT_TRUE(tree->IsWindowKnown(*(tree->roots().begin()), &root_client_id)); |
| 565 EXPECT_TRUE(tree->DeleteWindow(root_client_id)); | 566 EXPECT_TRUE(tree->DeleteWindow(root_client_id)); |
| 566 window_server->DestroyTree(tree); | 567 window_server->DestroyTree(tree); |
| 567 } | 568 } |
| 568 | 569 |
| 569 } // namespace test | 570 } // namespace test |
| 570 } // namespace ws | 571 } // namespace ws |
| 571 } // namespace ui | 572 } // namespace ui |
| OLD | NEW |