Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Side by Side Diff: ui/aura/test/mus/test_window_tree.h

Issue 2633233003: aura-mus: Implement stacking in DesktopWindowTreeHostMus. (Closed)
Patch Set: Reword comment. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/aura/test/mus/change_completion_waiter.cc ('k') | ui/aura/test/mus/test_window_tree.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <vector> 10 #include <vector>
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 uint32_t window_id, 170 uint32_t window_id,
171 ui::mojom::Cursor cursor_id) override; 171 ui::mojom::Cursor cursor_id) override;
172 void SetWindowTextInputState(uint32_t window_id, 172 void SetWindowTextInputState(uint32_t window_id,
173 mojo::TextInputStatePtr state) override; 173 mojo::TextInputStatePtr state) override;
174 void SetImeVisibility(uint32_t window_id, 174 void SetImeVisibility(uint32_t window_id,
175 bool visible, 175 bool visible,
176 mojo::TextInputStatePtr state) override; 176 mojo::TextInputStatePtr state) override;
177 void OnWindowInputEventAck(uint32_t event_id, 177 void OnWindowInputEventAck(uint32_t event_id,
178 ui::mojom::EventResult result) override; 178 ui::mojom::EventResult result) override;
179 void DeactivateWindow(uint32_t window_id) override; 179 void DeactivateWindow(uint32_t window_id) override;
180 void StackAtTop(uint32_t change_id, uint32_t window_id) override;
180 void GetWindowManagerClient( 181 void GetWindowManagerClient(
181 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal) 182 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal)
182 override; 183 override;
183 void GetCursorLocationMemory( 184 void GetCursorLocationMemory(
184 const GetCursorLocationMemoryCallback& callback) override; 185 const GetCursorLocationMemoryCallback& callback) override;
185 void PerformDragDrop( 186 void PerformDragDrop(
186 uint32_t change_id, 187 uint32_t change_id,
187 uint32_t source_window_id, 188 uint32_t source_window_id,
188 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, 189 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data,
189 uint32_t drag_operation) override; 190 uint32_t drag_operation) override;
(...skipping 25 matching lines...) Expand all
215 gfx::Insets last_client_area_; 216 gfx::Insets last_client_area_;
216 217
217 base::Optional<gfx::Rect> last_hit_test_mask_; 218 base::Optional<gfx::Rect> last_hit_test_mask_;
218 219
219 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); 220 DISALLOW_COPY_AND_ASSIGN(TestWindowTree);
220 }; 221 };
221 222
222 } // namespace aura 223 } // namespace aura
223 224
224 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ 225 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_
OLDNEW
« no previous file with comments | « ui/aura/test/mus/change_completion_waiter.cc ('k') | ui/aura/test/mus/test_window_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698