| 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 StackAbove(uint32_t change_id, Id above_id, Id below_id) override; |
| 448 void StackAtTop(uint32_t change_id, Id window_id) override; | 449 void StackAtTop(uint32_t change_id, Id window_id) override; |
| 449 void GetWindowManagerClient( | 450 void GetWindowManagerClient( |
| 450 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 451 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 451 override; | 452 override; |
| 452 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) | 453 void GetCursorLocationMemory(const GetCursorLocationMemoryCallback& callback) |
| 453 override; | 454 override; |
| 454 void PerformDragDrop( | 455 void PerformDragDrop( |
| 455 uint32_t change_id, | 456 uint32_t change_id, |
| 456 Id source_window_id, | 457 Id source_window_id, |
| 457 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, | 458 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 waiting_for_top_level_window_info_; | 581 waiting_for_top_level_window_info_; |
| 581 bool embedder_intercepts_events_ = false; | 582 bool embedder_intercepts_events_ = false; |
| 582 | 583 |
| 583 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 584 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 584 }; | 585 }; |
| 585 | 586 |
| 586 } // namespace ws | 587 } // namespace ws |
| 587 } // namespace ui | 588 } // namespace ui |
| 588 | 589 |
| 589 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ | 590 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ |
| OLD | NEW |