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

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

Issue 2592623002: mojo:: Introduce InterfaceRequest ctor that takes in InterfacePtr* (Closed)
Patch Set: Rebase + response to review 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
« no previous file with comments | « services/ui/ws/window_server.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ws/window_tree_unittest.cc
diff --git a/services/ui/ws/window_tree_unittest.cc b/services/ui/ws/window_tree_unittest.cc
index fc21e53c890b5ef5d47f5006f6effdf5e2e2dce5..fea549a4d89c81ab00b23790613a2e9cbbb36699 100644
--- a/services/ui/ws/window_tree_unittest.cc
+++ b/services/ui/ws/window_tree_unittest.cc
@@ -222,7 +222,7 @@ TEST_F(WindowTreeTest, FocusOnPointer) {
EXPECT_TRUE(wm_tree()->AddWindow(wm_root_id, embed_window_id));
display()->root_window()->SetBounds(gfx::Rect(0, 0, 100, 100));
mojom::WindowTreeClientPtr client;
- mojom::WindowTreeClientRequest client_request = MakeRequest(&client);
+ mojom::WindowTreeClientRequest client_request(&client);
wm_client()->Bind(std::move(client_request));
const uint32_t embed_flags = 0;
wm_tree()->Embed(embed_window_id, std::move(client), embed_flags);
« no previous file with comments | « services/ui/ws/window_server.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698