| Index: chrome/renderer/autofill/password_autofill_agent_browsertest.cc
|
| diff --git a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
|
| index 858cb51e9c176c40c53af41d8d2764f5a0f24268..b6b637b90d09edbb1a29083c787775407c87c806 100644
|
| --- a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
|
| +++ b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
|
| @@ -22,7 +22,6 @@
|
| #include "components/autofill/core/common/password_form_field_prediction_map.h"
|
| #include "components/password_manager/core/common/password_manager_features.h"
|
| #include "content/public/renderer/render_frame.h"
|
| -#include "mojo/common/common_type_converters.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "third_party/WebKit/public/platform/WebString.h"
|
| #include "third_party/WebKit/public/platform/WebVector.h"
|
| @@ -385,8 +384,8 @@ class PasswordAutofillAgentTest : public ChromeRenderViewTest {
|
| static_cast<autofill::PageClickListener*>(autofill_agent_)
|
| ->FormControlElementClicked(input, false);
|
|
|
| - autofill_agent_->FillPasswordSuggestion(mojo::String::From(username),
|
| - mojo::String::From(password));
|
| + autofill_agent_->FillPasswordSuggestion(base::UTF16ToUTF8(username),
|
| + base::UTF16ToUTF8(password));
|
| }
|
|
|
| void SimulateUsernameChange(const std::string& username) {
|
|
|