| Index: components/autofill/core/browser/webdata/autofill_entry.h
|
| diff --git a/components/autofill/core/browser/webdata/autofill_entry.h b/components/autofill/core/browser/webdata/autofill_entry.h
|
| index 4a934dd4510ecd2aa746240a7003c394dfa588c9..a7932fde2cd3a6750091654aecb8176cb9812f52 100644
|
| --- a/components/autofill/core/browser/webdata/autofill_entry.h
|
| +++ b/components/autofill/core/browser/webdata/autofill_entry.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_ENTRY_H__
|
| #define COMPONENTS_AUTOFILL_CORE_BROWSER_WEBDATA_AUTOFILL_ENTRY_H__
|
|
|
| +#include <string>
|
| +
|
| #include "base/strings/string16.h"
|
| #include "base/time/time.h"
|
|
|
| @@ -14,7 +16,7 @@ class AutofillKey {
|
| public:
|
| AutofillKey();
|
| AutofillKey(const base::string16& name, const base::string16& value);
|
| - AutofillKey(const char* name, const char* value);
|
| + AutofillKey(const std::string& name, const std::string& value);
|
| AutofillKey(const AutofillKey& key);
|
| virtual ~AutofillKey();
|
|
|
|
|