| Index: chrome/test/base/chrome_render_view_test.cc
|
| diff --git a/chrome/test/base/chrome_render_view_test.cc b/chrome/test/base/chrome_render_view_test.cc
|
| index d60f8166a4afd897d1b1e31c3429b2948b694041..da8e1458ffa5275a8dd77c551fe0fe65cbe7afdc 100644
|
| --- a/chrome/test/base/chrome_render_view_test.cc
|
| +++ b/chrome/test/base/chrome_render_view_test.cc
|
| @@ -46,7 +46,7 @@ using blink::WebString;
|
| using blink::WebURLRequest;
|
|
|
| ChromeRenderViewTest::ChromeRenderViewTest()
|
| - : password_autofill_(NULL),
|
| + : password_autofill_agent_(NULL),
|
| password_generation_(NULL),
|
| autofill_agent_(NULL),
|
| chrome_render_thread_(NULL) {
|
| @@ -67,10 +67,10 @@ void ChromeRenderViewTest::SetUp() {
|
| // RenderView doesn't expose its Agent objects, because it has no need to
|
| // store them directly (they're stored as RenderViewObserver*). So just
|
| // create another set.
|
| - password_autofill_ = new autofill::TestPasswordAutofillAgent(view_);
|
| + password_autofill_agent_ = new autofill::TestPasswordAutofillAgent(view_);
|
| password_generation_ = new autofill::TestPasswordGenerationAgent(view_);
|
| autofill_agent_ =
|
| - new AutofillAgent(view_, password_autofill_, password_generation_);
|
| + new AutofillAgent(view_, password_autofill_agent_, password_generation_);
|
| }
|
|
|
| void ChromeRenderViewTest::TearDown() {
|
|
|