| 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_IMPL_H_ | 5 #ifndef COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ |
| 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ | 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 void SetFocus(uint32_t change_id, Id transport_window_id) override; | 321 void SetFocus(uint32_t change_id, Id transport_window_id) override; |
| 322 void SetCanFocus(Id transport_window_id, bool can_focus) override; | 322 void SetCanFocus(Id transport_window_id, bool can_focus) override; |
| 323 void SetPredefinedCursor(uint32_t change_id, | 323 void SetPredefinedCursor(uint32_t change_id, |
| 324 Id transport_window_id, | 324 Id transport_window_id, |
| 325 mus::mojom::Cursor cursor_id) override; | 325 mus::mojom::Cursor cursor_id) override; |
| 326 void SetWindowTextInputState(Id transport_window_id, | 326 void SetWindowTextInputState(Id transport_window_id, |
| 327 mojo::TextInputStatePtr state) override; | 327 mojo::TextInputStatePtr state) override; |
| 328 void SetImeVisibility(Id transport_window_id, | 328 void SetImeVisibility(Id transport_window_id, |
| 329 bool visible, | 329 bool visible, |
| 330 mojo::TextInputStatePtr state) override; | 330 mojo::TextInputStatePtr state) override; |
| 331 void OnWindowInputEventAck(uint32_t event_id) override; | 331 void OnWindowInputEventAck(uint32_t event_id, bool handled) override; |
| 332 void SetClientArea( | 332 void SetClientArea( |
| 333 Id transport_window_id, | 333 Id transport_window_id, |
| 334 mojo::InsetsPtr insets, | 334 mojo::InsetsPtr insets, |
| 335 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; | 335 mojo::Array<mojo::RectPtr> transport_additional_client_areas) override; |
| 336 void GetWindowManagerClient( | 336 void GetWindowManagerClient( |
| 337 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) | 337 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal) |
| 338 override; | 338 override; |
| 339 | 339 |
| 340 // mojom::WindowManagerClient: | 340 // mojom::WindowManagerClient: |
| 341 void AddAccelerator(uint32_t id, | 341 void AddAccelerator(uint32_t id, |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 | 403 |
| 404 scoped_ptr<WaitingForTopLevelWindowInfo> waiting_for_top_level_window_info_; | 404 scoped_ptr<WaitingForTopLevelWindowInfo> waiting_for_top_level_window_info_; |
| 405 | 405 |
| 406 DISALLOW_COPY_AND_ASSIGN(WindowTreeImpl); | 406 DISALLOW_COPY_AND_ASSIGN(WindowTreeImpl); |
| 407 }; | 407 }; |
| 408 | 408 |
| 409 } // namespace ws | 409 } // namespace ws |
| 410 } // namespace mus | 410 } // namespace mus |
| 411 | 411 |
| 412 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ | 412 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_IMPL_H_ |
| OLD | NEW |