| 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 SERVICES_UI_WS_WINDOW_TREE_H_ | 5 #ifndef SERVICES_UI_WS_WINDOW_TREE_H_ |
| 6 #define SERVICES_UI_WS_WINDOW_TREE_H_ | 6 #define SERVICES_UI_WS_WINDOW_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 void OnWindowInputEventAck(uint32_t event_id, | 438 void OnWindowInputEventAck(uint32_t event_id, |
| 439 mojom::EventResult result) override; | 439 mojom::EventResult result) override; |
| 440 void DeactivateWindow(Id window_id) override; | 440 void DeactivateWindow(Id window_id) override; |
| 441 void SetClientArea(Id transport_window_id, | 441 void SetClientArea(Id transport_window_id, |
| 442 const gfx::Insets& insets, | 442 const gfx::Insets& insets, |
| 443 const base::Optional<std::vector<gfx::Rect>>& | 443 const base::Optional<std::vector<gfx::Rect>>& |
| 444 transport_additional_client_areas) override; | 444 transport_additional_client_areas) override; |
| 445 void SetCanAcceptDrops(Id window_id, bool accepts_drops) override; | 445 void SetCanAcceptDrops(Id window_id, bool accepts_drops) override; |
| 446 void SetHitTestMask(Id transport_window_id, | 446 void SetHitTestMask(Id transport_window_id, |
| 447 const base::Optional<gfx::Rect>& mask) override; | 447 const base::Optional<gfx::Rect>& mask) override; |
| 448 void StackAtTop(uint32_t change_id, Id window_id) override; |
| 448 void GetWindowManagerClient( | 449 void GetWindowManagerClient( |
| 449 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 450 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 450 override; | 451 override; |
| 451 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) | 452 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) |
| 452 override; | 453 override; |
| 453 void PerformDragDrop( | 454 void PerformDragDrop( |
| 454 uint32_t change_id, | 455 uint32_t change_id, |
| 455 Id source_window_id, | 456 Id source_window_id, |
| 456 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, | 457 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, |
| 457 uint32_t drag_operation) override; | 458 uint32_t drag_operation) override; |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 waiting_for_top_level_window_info_; | 578 waiting_for_top_level_window_info_; |
| 578 bool embedder_intercepts_events_ = false; | 579 bool embedder_intercepts_events_ = false; |
| 579 | 580 |
| 580 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 581 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 581 }; | 582 }; |
| 582 | 583 |
| 583 } // namespace ws | 584 } // namespace ws |
| 584 } // namespace ui | 585 } // namespace ui |
| 585 | 586 |
| 586 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ | 587 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ |
| OLD | NEW |