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

Side by Side Diff: components/autofill/content/renderer/test_autofill_agent.cc

Issue 563313004: [Password Manager] Unfriend PasswordAutofillAgentTest from PasswordAutofillAgent (clean-up). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporated review comments. Created 6 years, 3 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/autofill/content/renderer/test_autofill_agent.h"
6
7 #include "components/autofill/content/renderer/password_autofill_agent.h"
8 #include "components/autofill/content/renderer/password_generation_agent.h"
9 #include "content/public/renderer/render_view.h"
10
11 namespace autofill {
12
13 TestAutofillAgent::TestAutofillAgent(
14 content::RenderView* render_view,
15 PasswordAutofillAgent* password_autofill_manager,
16 PasswordGenerationAgent* password_generation_agent)
17 : AutofillAgent(render_view,
18 password_autofill_manager,
19 password_generation_agent) {
20 }
21
22 TestAutofillAgent::~TestAutofillAgent() {
23 }
24
25 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698