| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 mojo::TextInputStatePtr state) override; | 374 mojo::TextInputStatePtr state) override; |
| 375 void SetImeVisibility(Id transport_window_id, | 375 void SetImeVisibility(Id transport_window_id, |
| 376 bool visible, | 376 bool visible, |
| 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 SetHitTestMask(Id transport_window_id, mojo::RectPtr mask) override; |
| 384 void GetWindowManagerClient( | 385 void GetWindowManagerClient( |
| 385 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 386 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 386 override; | 387 override; |
| 387 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) | 388 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) |
| 388 override; | 389 override; |
| 389 | 390 |
| 390 // mojom::WindowManagerClient: | 391 // mojom::WindowManagerClient: |
| 391 void AddAccelerator(uint32_t id, | 392 void AddAccelerator(uint32_t id, |
| 392 mojom::EventMatcherPtr event_matcher, | 393 mojom::EventMatcherPtr event_matcher, |
| 393 const AddAcceleratorCallback& callback) override; | 394 const AddAcceleratorCallback& callback) override; |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 std::unique_ptr<WaitingForTopLevelWindowInfo> | 464 std::unique_ptr<WaitingForTopLevelWindowInfo> |
| 464 waiting_for_top_level_window_info_; | 465 waiting_for_top_level_window_info_; |
| 465 | 466 |
| 466 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 467 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 467 }; | 468 }; |
| 468 | 469 |
| 469 } // namespace ws | 470 } // namespace ws |
| 470 } // namespace mus | 471 } // namespace mus |
| 471 | 472 |
| 472 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 473 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| OLD | NEW |