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

Side by Side Diff: components/mus/public/cpp/tests/test_window_tree.h

Issue 1644773004: Renames some WindowManager classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup Created 4 years, 10 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
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 COMPONENTS_MUS_PUBLIC_CPP_TESTS_TEST_WINDOW_TREE_H_ 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_TESTS_TEST_WINDOW_TREE_H_
6 #define COMPONENTS_MUS_PUBLIC_CPP_TESTS_TEST_WINDOW_TREE_H_ 6 #define COMPONENTS_MUS_PUBLIC_CPP_TESTS_TEST_WINDOW_TREE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <set> 10 #include <set>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 void SetCanFocus(uint32_t window_id, bool can_focus) override; 79 void SetCanFocus(uint32_t window_id, bool can_focus) override;
80 void SetPredefinedCursor(uint32_t change_id, 80 void SetPredefinedCursor(uint32_t change_id,
81 uint32_t window_id, 81 uint32_t window_id,
82 mus::mojom::Cursor cursor_id) override; 82 mus::mojom::Cursor cursor_id) override;
83 void SetWindowTextInputState(uint32_t window_id, 83 void SetWindowTextInputState(uint32_t window_id,
84 mojo::TextInputStatePtr state) override; 84 mojo::TextInputStatePtr state) override;
85 void SetImeVisibility(uint32_t window_id, 85 void SetImeVisibility(uint32_t window_id,
86 bool visible, 86 bool visible,
87 mojo::TextInputStatePtr state) override; 87 mojo::TextInputStatePtr state) override;
88 void OnWindowInputEventAck(uint32_t event_id) override; 88 void OnWindowInputEventAck(uint32_t event_id) override;
89 void GetWindowManagerInternalClient( 89 void GetWindowManagerClient(
90 mojo::AssociatedInterfaceRequest<mojom::WindowManagerInternalClient> 90 mojo::AssociatedInterfaceRequest<mojom::WindowManagerClient> internal)
91 internal) override; 91 override;
92 92
93 bool got_change_; 93 bool got_change_;
94 uint32_t change_id_; 94 uint32_t change_id_;
95 std::set<uint32_t> acked_events_; 95 std::set<uint32_t> acked_events_;
96 uint32_t window_id_; 96 uint32_t window_id_;
97 97
98 DISALLOW_COPY_AND_ASSIGN(TestWindowTree); 98 DISALLOW_COPY_AND_ASSIGN(TestWindowTree);
99 }; 99 };
100 100
101 } // namespace mus 101 } // namespace mus
102 102
103 #endif // COMPONENTS_MUS_PUBLIC_CPP_TESTS_TEST_WINDOW_TREE_H_ 103 #endif // COMPONENTS_MUS_PUBLIC_CPP_TESTS_TEST_WINDOW_TREE_H_
OLDNEW
« no previous file with comments | « components/mus/public/cpp/lib/window_tree_host_factory.cc ('k') | components/mus/public/cpp/tests/test_window_tree.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698