Index: chrome/browser/autofill/personal_data_manager.cc |
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc |
index 7ab1285b12b8687d93255789426392c5223da976..592d13f6e976c70ed3d79235ff6915852335d133 100644 |
--- a/chrome/browser/autofill/personal_data_manager.cc |
+++ b/chrome/browser/autofill/personal_data_manager.cc |
@@ -6,8 +6,10 @@ |
#include <algorithm> |
#include <iterator> |
+#include <string> |
#include "base/logging.h" |
+#include "base/stl_util.h" |
#include "base/string_number_conversions.h" |
#include "base/utf_string_conversions.h" |
#include "chrome/browser/autofill/autofill-inl.h" |
@@ -68,11 +70,6 @@ class DereferenceFunctor { |
} |
}; |
-template<typename T> |
-T* address_of(T& v) { |
- return &v; |
-} |
- |
bool IsValidEmail(const string16& value) { |
// This regex is more permissive than the official rfc2822 spec on the |
// subject, but it does reject obvious non-email addresses. |