Chromium Code Reviews| 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 430 void SetPredefinedCursor(uint32_t change_id, | 430 void SetPredefinedCursor(uint32_t change_id, |
| 431 Id transport_window_id, | 431 Id transport_window_id, |
| 432 ui::mojom::Cursor cursor_id) override; | 432 ui::mojom::Cursor cursor_id) override; |
| 433 void SetWindowTextInputState(Id transport_window_id, | 433 void SetWindowTextInputState(Id transport_window_id, |
| 434 mojo::TextInputStatePtr state) override; | 434 mojo::TextInputStatePtr state) override; |
| 435 void SetImeVisibility(Id transport_window_id, | 435 void SetImeVisibility(Id transport_window_id, |
| 436 bool visible, | 436 bool visible, |
| 437 mojo::TextInputStatePtr state) override; | 437 mojo::TextInputStatePtr state) override; |
| 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 current_window_id) override; | |
|
sky
2017/01/12 00:55:39
window_id.
Elliot Glaysher
2017/01/12 23:20:37
Done.
| |
| 440 void SetClientArea(Id transport_window_id, | 441 void SetClientArea(Id transport_window_id, |
| 441 const gfx::Insets& insets, | 442 const gfx::Insets& insets, |
| 442 const base::Optional<std::vector<gfx::Rect>>& | 443 const base::Optional<std::vector<gfx::Rect>>& |
| 443 transport_additional_client_areas) override; | 444 transport_additional_client_areas) override; |
| 444 void SetCanAcceptDrops(Id window_id, bool accepts_drops) override; | 445 void SetCanAcceptDrops(Id window_id, bool accepts_drops) override; |
| 445 void SetHitTestMask(Id transport_window_id, | 446 void SetHitTestMask(Id transport_window_id, |
| 446 const base::Optional<gfx::Rect>& mask) override; | 447 const base::Optional<gfx::Rect>& mask) override; |
| 447 void GetWindowManagerClient( | 448 void GetWindowManagerClient( |
| 448 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 449 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 449 override; | 450 override; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 576 waiting_for_top_level_window_info_; | 577 waiting_for_top_level_window_info_; |
| 577 bool embedder_intercepts_events_ = false; | 578 bool embedder_intercepts_events_ = false; |
| 578 | 579 |
| 579 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 580 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 580 }; | 581 }; |
| 581 | 582 |
| 582 } // namespace ws | 583 } // namespace ws |
| 583 } // namespace ui | 584 } // namespace ui |
| 584 | 585 |
| 585 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ | 586 #endif // SERVICES_UI_WS_WINDOW_TREE_H_ |
| OLD | NEW |