Index: components/autofill/core/browser/autofill_field.h |
diff --git a/components/autofill/core/browser/autofill_field.h b/components/autofill/core/browser/autofill_field.h |
index 6c9d5231eb044735c0be8b3720a9e6ca1504cd7d..8295440e822399546488b52305ac3e893819de29 100644 |
--- a/components/autofill/core/browser/autofill_field.h |
+++ b/components/autofill/core/browser/autofill_field.h |
@@ -53,8 +53,8 @@ class AutofillField : public FormFieldData { |
void set_previously_autofilled(bool previously_autofilled) { |
previously_autofilled_ = previously_autofilled; |
} |
- void set_parseable_name(base::string16 parseable_name) { |
- parseable_name_ = std::move(parseable_name); |
+ void set_parseable_name(const base::string16& parseable_name) { |
+ parseable_name_ = parseable_name; |
} |
// This function automatically chooses between server and heuristic autofill |