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

Unified Diff: components/autofill/core/browser/email_field.h

Issue 472433002: [Autofill] Modified to remove const qualifiers from FormField and AutofillScanner implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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/core/browser/email_field.h
diff --git a/components/autofill/core/browser/email_field.h b/components/autofill/core/browser/email_field.h
index 4e270a18bc6c29854d3737e51311c0918981ad4c..08fdb03daed99fd795a0ada173d8577581ac64bb 100644
--- a/components/autofill/core/browser/email_field.h
+++ b/components/autofill/core/browser/email_field.h
@@ -20,9 +20,9 @@ class EmailField : public FormField {
virtual bool ClassifyField(ServerFieldTypeMap* map) const OVERRIDE;
private:
- explicit EmailField(const AutofillField* field);
+ explicit EmailField(AutofillField* field);
- const AutofillField* field_;
Evan Stade 2014/08/13 22:27:46 this is overboard. You can leave these consts.
Pritam Nikam 2014/08/16 04:26:11 Done.
+ AutofillField* field_;
DISALLOW_COPY_AND_ASSIGN(EmailField);
};

Powered by Google App Engine
This is Rietveld 408576698