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

Unified Diff: chrome/renderer/autofill/password_generation_test_utils.h

Issue 2750323003: [Password Manager] Replace WebInputElement.setValue with WebInputElement.setAutofillValue (Closed)
Patch Set: Fixed a comment Created 3 years, 9 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: chrome/renderer/autofill/password_generation_test_utils.h
diff --git a/chrome/renderer/autofill/password_generation_test_utils.h b/chrome/renderer/autofill/password_generation_test_utils.h
index 7c454ffe59db3f932b25f650c2007a5a3939bcd1..e10491f6617fdb3333cf74513deddea9040be170 100644
--- a/chrome/renderer/autofill/password_generation_test_utils.h
+++ b/chrome/renderer/autofill/password_generation_test_utils.h
@@ -6,6 +6,9 @@
#define CHROME_RENDERER_AUTOFILL_PASSWORD_GENERATION_TEST_UTILS_H_
#include <string>
+#include <vector>
+
+#include "base/strings/string16.h"
namespace blink {
class WebDocument;
@@ -21,6 +24,11 @@ void SetAccountCreationFormsDetectedMessage(TestPasswordGenerationAgent* agent,
blink::WebDocument document,
int form_index,
int field_index);
+
+std::string CreateScriptToRegisterListeners(
+ const char* const element_name,
+ std::vector<base::string16>* variables_to_check);
+
} // namespace autofill
#endif // CHROME_RENDERER_AUTOFILL_PASSWORD_GENERATION_TEST_UTILS_H_

Powered by Google App Engine
This is Rietveld 408576698