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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/content/renderer/test_autofill_agent.cc
diff --git a/components/autofill/content/renderer/test_autofill_agent.cc b/components/autofill/content/renderer/test_autofill_agent.cc
new file mode 100644
index 0000000000000000000000000000000000000000..361c61a2156e19ee13673bd7f30a178c1faaaf37
--- /dev/null
+++ b/components/autofill/content/renderer/test_autofill_agent.cc
@@ -0,0 +1,25 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/autofill/content/renderer/test_autofill_agent.h"
+
+#include "components/autofill/content/renderer/password_autofill_agent.h"
+#include "components/autofill/content/renderer/password_generation_agent.h"
+#include "content/public/renderer/render_view.h"
+
+namespace autofill {
+
+TestAutofillAgent::TestAutofillAgent(
+ content::RenderView* render_view,
+ PasswordAutofillAgent* password_autofill_manager,
+ PasswordGenerationAgent* password_generation_agent)
+ : AutofillAgent(render_view,
+ password_autofill_manager,
+ password_generation_agent) {
+}
+
+TestAutofillAgent::~TestAutofillAgent() {
+}
+
+} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698