| Index: components/autofill/content/browser/content_autofill_driver.cc
|
| diff --git a/components/autofill/content/browser/content_autofill_driver.cc b/components/autofill/content/browser/content_autofill_driver.cc
|
| index 3f4ce7928c9ad4461bef10694c7efe41504344e5..2821197efa4ea6a442c5a617b19d0470a49f5439 100644
|
| --- a/components/autofill/content/browser/content_autofill_driver.cc
|
| +++ b/components/autofill/content/browser/content_autofill_driver.cc
|
| @@ -9,7 +9,6 @@
|
| #include "base/command_line.h"
|
| #include "base/threading/sequenced_worker_pool.h"
|
| #include "components/autofill/content/browser/content_autofill_driver_factory.h"
|
| -#include "components/autofill/content/common/autofill_messages.h"
|
| #include "components/autofill/core/browser/autofill_client.h"
|
| #include "components/autofill/core/browser/autofill_external_delegate.h"
|
| #include "components/autofill/core/browser/autofill_manager.h"
|
| @@ -254,12 +253,12 @@ void ContentAutofillDriver::NotifyFirstUserGestureObservedInTab() {
|
|
|
| const mojom::AutofillAgentPtr& ContentAutofillDriver::GetAutofillAgent() {
|
| // Here is a lazy binding, and will not reconnect after connection error.
|
| - if (!mojo_autofill_agent_) {
|
| + if (!autofill_agent_) {
|
| render_frame_host_->GetRemoteInterfaces()->GetInterface(
|
| - mojo::GetProxy(&mojo_autofill_agent_));
|
| + mojo::GetProxy(&autofill_agent_));
|
| }
|
|
|
| - return mojo_autofill_agent_;
|
| + return autofill_agent_;
|
| }
|
|
|
| } // namespace autofill
|
|
|