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

Unified Diff: components/autofill/content/browser/content_autofill_driver.h

Issue 2180093002: [Autofill] Switch on use_new_wrapper_types mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nit Created 4 years, 5 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
« no previous file with comments | « components/autofill.gypi ('k') | components/autofill/content/browser/content_autofill_driver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/content/browser/content_autofill_driver.h
diff --git a/components/autofill/content/browser/content_autofill_driver.h b/components/autofill/content/browser/content_autofill_driver.h
index 94578f2cb4c47976948d473f369bd1ddef6391c1..2923507965ee6f1192a26c1e0f63ef644beaa1fd 100644
--- a/components/autofill/content/browser/content_autofill_driver.h
+++ b/components/autofill/content/browser/content_autofill_driver.h
@@ -71,7 +71,7 @@ class ContentAutofillDriver : public AutofillDriver,
// mojom::AutofillDriver:
void FirstUserGestureObserved() override;
- void FormsSeen(mojo::Array<FormData> forms,
+ void FormsSeen(const std::vector<FormData>& forms,
base::TimeTicks timestamp) override;
void WillSubmitForm(const FormData& form, base::TimeTicks timestamp) override;
void FormSubmitted(const FormData& form) override;
@@ -89,8 +89,8 @@ class ContentAutofillDriver : public AutofillDriver,
base::TimeTicks timestamp) override;
void DidPreviewAutofillFormData() override;
void DidEndTextFieldEditing() override;
- void SetDataList(mojo::Array<mojo::String> values,
- mojo::Array<mojo::String> labels) override;
+ void SetDataList(const std::vector<base::string16>& values,
+ const std::vector<base::string16>& labels) override;
// Called when the frame has navigated.
void DidNavigateFrame(const content::LoadCommittedDetails& details,
« no previous file with comments | « components/autofill.gypi ('k') | components/autofill/content/browser/content_autofill_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698