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

Unified Diff: components/password_manager/content/browser/content_password_manager_driver.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
Index: components/password_manager/content/browser/content_password_manager_driver.cc
diff --git a/components/password_manager/content/browser/content_password_manager_driver.cc b/components/password_manager/content/browser/content_password_manager_driver.cc
index 03c3425118f0d5317efdf56bc1b0242d17ade420..61e35ebf6b4d76f1ecb0e1cf6fd60c7db5276207 100644
--- a/components/password_manager/content/browser/content_password_manager_driver.cc
+++ b/components/password_manager/content/browser/content_password_manager_driver.cc
@@ -309,7 +309,7 @@ const autofill::mojom::PasswordAutofillAgentPtr&
ContentPasswordManagerDriver::GetPasswordAutofillAgent() {
if (!password_autofill_agent_) {
autofill::mojom::PasswordAutofillAgentRequest request =
- mojo::GetProxy(&password_autofill_agent_);
+ mojo::MakeRequest(&password_autofill_agent_);
// Some test codes may have no initialized remote interfaces.
if (render_frame_host_->GetRemoteInterfaces()) {
render_frame_host_->GetRemoteInterfaces()->GetInterface(
@@ -324,7 +324,7 @@ const autofill::mojom::PasswordGenerationAgentPtr&
ContentPasswordManagerDriver::GetPasswordGenerationAgent() {
if (!password_gen_agent_) {
render_frame_host_->GetRemoteInterfaces()->GetInterface(
- mojo::GetProxy(&password_gen_agent_));
+ mojo::MakeRequest(&password_gen_agent_));
}
return password_gen_agent_;

Powered by Google App Engine
This is Rietveld 408576698