| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 5 #ifndef UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| 6 #define UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 6 #define UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 const mojo::String& name, | 117 const mojo::String& name, |
| 118 mojo::Array<uint8_t> value) override; | 118 mojo::Array<uint8_t> value) override; |
| 119 void SetWindowOpacity(uint32_t change_id, | 119 void SetWindowOpacity(uint32_t change_id, |
| 120 uint32_t window_id, | 120 uint32_t window_id, |
| 121 float opacity) override; | 121 float opacity) override; |
| 122 void AttachCompositorFrameSink( | 122 void AttachCompositorFrameSink( |
| 123 uint32_t window_id, | 123 uint32_t window_id, |
| 124 ui::mojom::CompositorFrameSinkType type, | 124 ui::mojom::CompositorFrameSinkType type, |
| 125 mojo::InterfaceRequest<cc::mojom::MojoCompositorFrameSink> surface, | 125 mojo::InterfaceRequest<cc::mojom::MojoCompositorFrameSink> surface, |
| 126 cc::mojom::MojoCompositorFrameSinkClientPtr client) override; | 126 cc::mojom::MojoCompositorFrameSinkClientPtr client) override; |
| 127 void OnWindowSurfaceDetached(uint32_t window_id, | |
| 128 const cc::SurfaceSequence& sequence) override; | |
| 129 void AddWindow(uint32_t change_id, uint32_t parent, uint32_t child) override; | 127 void AddWindow(uint32_t change_id, uint32_t parent, uint32_t child) override; |
| 130 void RemoveWindowFromParent(uint32_t change_id, uint32_t window_id) override; | 128 void RemoveWindowFromParent(uint32_t change_id, uint32_t window_id) override; |
| 131 void AddTransientWindow(uint32_t change_id, | 129 void AddTransientWindow(uint32_t change_id, |
| 132 uint32_t window_id, | 130 uint32_t window_id, |
| 133 uint32_t transient_window_id) override; | 131 uint32_t transient_window_id) override; |
| 134 void RemoveTransientWindowFromParent(uint32_t change_id, | 132 void RemoveTransientWindowFromParent(uint32_t change_id, |
| 135 uint32_t window_id) override; | 133 uint32_t window_id) override; |
| 136 void SetModal(uint32_t change_id, uint32_t window_id) override; | 134 void SetModal(uint32_t change_id, uint32_t window_id) override; |
| 137 void ReorderWindow(uint32_t change_id, | 135 void ReorderWindow(uint32_t change_id, |
| 138 uint32_t window_id, | 136 uint32_t window_id, |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 mojo::Map<mojo::String, mojo::Array<uint8_t>> last_new_window_properties_; | 187 mojo::Map<mojo::String, mojo::Array<uint8_t>> last_new_window_properties_; |
| 190 | 188 |
| 191 TransientData transient_data_; | 189 TransientData transient_data_; |
| 192 | 190 |
| 193 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); | 191 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); |
| 194 }; | 192 }; |
| 195 | 193 |
| 196 } // namespace aura | 194 } // namespace aura |
| 197 | 195 |
| 198 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ | 196 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ |
| OLD | NEW |