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

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

Issue 2568303006: aura-mus: Implement Deactivate(). (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/test/aura_test_base.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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 void SetPredefinedCursor(uint32_t change_id, 169 void SetPredefinedCursor(uint32_t change_id,
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 GetWindowManagerClient( 180 void GetWindowManagerClient(
180 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal) 181 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManagerClient> internal)
181 override; 182 override;
182 void GetCursorLocationMemory( 183 void GetCursorLocationMemory(
183 const GetCursorLocationMemoryCallback& callback) override; 184 const GetCursorLocationMemoryCallback& callback) override;
184 void PerformDragDrop( 185 void PerformDragDrop(
185 uint32_t change_id, 186 uint32_t change_id,
186 uint32_t source_window_id, 187 uint32_t source_window_id,
187 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data, 188 const std::unordered_map<std::string, std::vector<uint8_t>>& drag_data,
188 uint32_t drag_operation) override; 189 uint32_t drag_operation) override;
(...skipping 25 matching lines...) Expand all
214 gfx::Insets last_client_area_; 215 gfx::Insets last_client_area_;
215 216
216 base::Optional<gfx::Rect> last_hit_test_mask_; 217 base::Optional<gfx::Rect> last_hit_test_mask_;
217 218
218 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); 219 DISALLOW_COPY_AND_ASSIGN(TestWindowTree);
219 }; 220 };
220 221
221 } // namespace aura 222 } // namespace aura
222 223
223 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_ 224 #endif // UI_AURA_TEST_MUS_TEST_WINDOW_TREE_H_
OLDNEW
« no previous file with comments | « ui/aura/test/aura_test_base.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