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

Unified Diff: services/ui/ime/ime_unittest.cc

Issue 2589663003: mojo:: Rename mojo::GetProxy() to mojo::MakeRequest() (Closed)
Patch Set: Rebase 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/gpu/gpu_main.cc ('k') | services/ui/ime/test_ime_driver/test_ime_application.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/ime/ime_unittest.cc
diff --git a/services/ui/ime/ime_unittest.cc b/services/ui/ime/ime_unittest.cc
index 6209514fd64166cb7570c6d9b77dad39b92dd379..79d6c34b60a93bd3d7df3d319fbac11f980af5fc 100644
--- a/services/ui/ime/ime_unittest.cc
+++ b/services/ui/ime/ime_unittest.cc
@@ -90,10 +90,10 @@ class IMEAppTest : public service_manager::test::ServiceTest {
// Tests sending a KeyEvent to the IMEDriver through the Mus IMEServer.
TEST_F(IMEAppTest, ProcessKeyEvent) {
ui::mojom::TextInputClientPtr client_ptr;
- TestTextInputClient client(GetProxy(&client_ptr));
+ TestTextInputClient client(MakeRequest(&client_ptr));
ui::mojom::InputMethodPtr input_method;
- ime_server_->StartSession(std::move(client_ptr), GetProxy(&input_method));
+ ime_server_->StartSession(std::move(client_ptr), MakeRequest(&input_method));
// Send character key event.
ui::KeyEvent char_event('A', ui::VKEY_A, 0);
« no previous file with comments | « services/ui/gpu/gpu_main.cc ('k') | services/ui/ime/test_ime_driver/test_ime_application.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698