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

Side by Side Diff: chrome/renderer/autofill/password_generation_test_utils.cc

Issue 2334543003: [Password Generation] Move canonical action computation from rendered to browser part (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | components/autofill/content/renderer/password_generation_agent.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/autofill/password_generation_test_utils.h" 5 #include "chrome/renderer/autofill/password_generation_test_utils.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/strings/stringprintf.h" 9 #include "base/strings/stringprintf.h"
10 #include "components/autofill/content/renderer/form_autofill_util.h" 10 #include "components/autofill/content/renderer/form_autofill_util.h"
(...skipping 23 matching lines...) Expand all
34 blink::WebVector<blink::WebFormElement> web_forms; 34 blink::WebVector<blink::WebFormElement> web_forms;
35 document.forms(web_forms); 35 document.forms(web_forms);
36 36
37 autofill::FormData form_data; 37 autofill::FormData form_data;
38 WebFormElementToFormData( 38 WebFormElementToFormData(
39 web_forms[form_index], blink::WebFormControlElement(), nullptr, 39 web_forms[form_index], blink::WebFormControlElement(), nullptr,
40 form_util::EXTRACT_NONE, &form_data, nullptr /* FormFieldData */); 40 form_util::EXTRACT_NONE, &form_data, nullptr /* FormFieldData */);
41 41
42 std::vector<autofill::PasswordFormGenerationData> forms; 42 std::vector<autofill::PasswordFormGenerationData> forms;
43 forms.push_back(autofill::PasswordFormGenerationData{ 43 forms.push_back(autofill::PasswordFormGenerationData{
44 form_data.name, form_data.action, form_data.fields[field_index]}); 44 form_data.name, form_util::StripAuthAndParams(form_data.action),
45 form_data.fields[field_index]});
45 generation_agent->FoundFormsEligibleForGeneration(forms); 46 generation_agent->FoundFormsEligibleForGeneration(forms);
46 } 47 }
47 48
48 } // namespace autofill 49 } // namespace autofill
OLDNEW
« no previous file with comments | « no previous file | components/autofill/content/renderer/password_generation_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698