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

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

Issue 2655463009: aura-mus: Implement DesktopWindowTreeHostMus::StackAbove(). (Closed)
Patch Set: Add 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/mus/window_tree_host_mus_delegate.h ('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 StackAbove(uint32_t change_id, uint32_t above_id,
181 uint32_t below_id) override;
180 void StackAtTop(uint32_t change_id, uint32_t window_id) override; 182 void StackAtTop(uint32_t change_id, uint32_t window_id) override;
181 void GetWindowManagerClient( 183 void GetWindowManagerClient(
182 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal) 184 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal)
183 override; 185 override;
184 void GetCursorLocationMemory( 186 void GetCursorLocationMemory(
185 const GetCursorLocationMemoryCallback& callback) override; 187 const GetCursorLocationMemoryCallback& callback) override;
186 void PerformDragDrop( 188 void PerformDragDrop(
187 uint32_t change_id, 189 uint32_t change_id,
188 uint32_t source_window_id, 190 uint32_t source_window_id,
189 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, 191 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data,
(...skipping 26 matching lines...) Expand all
216 gfx::Insets last_client_area_; 218 gfx::Insets last_client_area_;
217 219
218 base::Optional<gfx::Rect> last_hit_test_mask_; 220 base::Optional<gfx::Rect> last_hit_test_mask_;
219 221
220 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); 222 DISALLOW_COPY_AND_ASSIGN(TestWindowTree);
221 }; 223 };
222 224
223 } // namespace aura 225 } // namespace aura
224 226
225 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ 227 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_
OLDNEW
« no previous file with comments | « ui/aura/mus/window_tree_host_mus_delegate.h ('k') | ui/aura/test/mus/test_window_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698