| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 void SetFocus(uint32_t change_id, Id transport_window_id) override; | 332 void SetFocus(uint32_t change_id, Id transport_window_id) override; |
| 333 void SetCanFocus(Id transport_window_id, bool can_focus) override; | 333 void SetCanFocus(Id transport_window_id, bool can_focus) override; |
| 334 void SetPredefinedCursor(uint32_t change_id, | 334 void SetPredefinedCursor(uint32_t change_id, |
| 335 Id transport_window_id, | 335 Id transport_window_id, |
| 336 mus::mojom::Cursor cursor_id) override; | 336 mus::mojom::Cursor cursor_id) override; |
| 337 void SetWindowTextInputState(Id transport_window_id, | 337 void SetWindowTextInputState(Id transport_window_id, |
| 338 mojo::TextInputStatePtr state) override; | 338 mojo::TextInputStatePtr state) override; |
| 339 void SetImeVisibility(Id transport_window_id, | 339 void SetImeVisibility(Id transport_window_id, |
| 340 bool visible, | 340 bool visible, |
| 341 mojo::TextInputStatePtr state) override; | 341 mojo::TextInputStatePtr state) override; |
| 342 void OnWindowInputEventAck(uint32_t event_id) override; | 342 void OnWindowInputEventAck(uint32_t event_id, bool handled) override; |
| 343 void SetClientArea( | 343 void SetClientArea( |
| 344 Id transport_window_id, | 344 Id transport_window_id, |
| 345 mojo::InsetsPtr insets, | 345 mojo::InsetsPtr insets, |
| 346 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; | 346 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; |
| 347 void GetWindowManagerClient( | 347 void GetWindowManagerClient( |
| 348 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 348 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 349 override; | 349 override; |
| 350 | 350 |
| 351 // mojom::WindowManagerClient: | 351 // mojom::WindowManagerClient: |
| 352 void AddAccelerator(uint32_t id, | 352 void AddAccelerator(uint32_t id, |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 | 414 |
| 415 scoped_ptr<WaitingForTopLevelWindowInfo> waiting_for_top_level_window_info_; | 415 scoped_ptr<WaitingForTopLevelWindowInfo> waiting_for_top_level_window_info_; |
| 416 | 416 |
| 417 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 417 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 418 }; | 418 }; |
| 419 | 419 |
| 420 } // namespace ws | 420 } // namespace ws |
| 421 } // namespace mus | 421 } // namespace mus |
| 422 | 422 |
| 423 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 423 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| OLD | NEW |