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

Unified Diff: services/ui/ws/window_manager_state_unittest.cc

Issue 2592623002: mojo:: Introduce InterfaceRequest ctor that takes in InterfacePtr* (Closed)
Patch Set: Minor fix Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: services/ui/ws/window_manager_state_unittest.cc
diff --git a/services/ui/ws/window_manager_state_unittest.cc b/services/ui/ws/window_manager_state_unittest.cc
index 401ae507944b23cbf6bff515da8bd74b0b419b5a..6a03c5d90a2791b7625aeb8496f81616bb12c652 100644
--- a/services/ui/ws/window_manager_state_unittest.cc
+++ b/services/ui/ws/window_manager_state_unittest.cc
@@ -79,7 +79,7 @@ class WindowManagerStateTest : public testing::Test {
WindowTree** embed_tree,
TestWindowTreeClient** embed_client_proxy) {
mojom::WindowTreeClientPtr embed_client;
- mojom::WindowTreeClientRequest client_request = MakeRequest(&embed_client);
+ mojom::WindowTreeClientRequest client_request(&embed_client);
ASSERT_TRUE(
tree->Embed(embed_window_id, std::move(embed_client), embed_flags));
TestWindowTreeClient* client =

Powered by Google App Engine
This is Rietveld 408576698