| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 5 #ifndef COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 mojo::TextInputStatePtr state) override; | 377 mojo::TextInputStatePtr state) override; |
| 378 void OnWindowInputEventAck(uint32_t event_id, | 378 void OnWindowInputEventAck(uint32_t event_id, |
| 379 mojom::EventResult result) override; | 379 mojom::EventResult result) override; |
| 380 void SetClientArea( | 380 void SetClientArea( |
| 381 Id transport_window_id, | 381 Id transport_window_id, |
| 382 mojo::InsetsPtr insets, | 382 mojo::InsetsPtr insets, |
| 383 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; | 383 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; |
| 384 void GetWindowManagerClient( | 384 void GetWindowManagerClient( |
| 385 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 385 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 386 override; | 386 override; |
| 387 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) |
| 388 override; |
| 387 | 389 |
| 388 // mojom::WindowManagerClient: | 390 // mojom::WindowManagerClient: |
| 389 void AddAccelerator(uint32_t id, | 391 void AddAccelerator(uint32_t id, |
| 390 mojom::EventMatcherPtr event_matcher, | 392 mojom::EventMatcherPtr event_matcher, |
| 391 const AddAcceleratorCallback& callback) override; | 393 const AddAcceleratorCallback& callback) override; |
| 392 void RemoveAccelerator(uint32_t id) override; | 394 void RemoveAccelerator(uint32_t id) override; |
| 393 void AddActivationParent(Id transport_window_id) override; | 395 void AddActivationParent(Id transport_window_id) override; |
| 394 void RemoveActivationParent(Id transport_window_id) override; | 396 void RemoveActivationParent(Id transport_window_id) override; |
| 395 void ActivateNextWindow() override; | 397 void ActivateNextWindow() override; |
| 396 void SetUnderlaySurfaceOffsetAndExtendedHitArea( | 398 void SetUnderlaySurfaceOffsetAndExtendedHitArea( |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 std::unique_ptr<WaitingForTopLevelWindowInfo> | 461 std::unique_ptr<WaitingForTopLevelWindowInfo> |
| 460 waiting_for_top_level_window_info_; | 462 waiting_for_top_level_window_info_; |
| 461 | 463 |
| 462 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 464 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 463 }; | 465 }; |
| 464 | 466 |
| 465 } // namespace ws | 467 } // namespace ws |
| 466 } // namespace mus | 468 } // namespace mus |
| 467 | 469 |
| 468 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 470 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| OLD | NEW |