Index: chrome/browser/webdata/autofill_table.cc |
diff --git a/chrome/browser/webdata/autofill_table.cc b/chrome/browser/webdata/autofill_table.cc |
index aa4c225bc981ca790bc901d8958d96fc38811b38..9f6e314bb6883508f9a494fefe099c3e580cc050 100644 |
--- a/chrome/browser/webdata/autofill_table.cc |
+++ b/chrome/browser/webdata/autofill_table.cc |
@@ -9,10 +9,12 @@ |
#include <map> |
#include <set> |
#include <string> |
+#include <utility> |
#include <vector> |
#include "base/i18n/case_conversion.h" |
#include "base/logging.h" |
+#include "base/stl_util.h" |
#include "base/string_number_conversions.h" |
#include "base/time.h" |
#include "base/tuple.h" |
@@ -38,10 +40,6 @@ typedef std::vector<Tuple3<int64, string16, string16> > AutofillElementList; |
// TODO(dhollowa): Find a common place for this. It is duplicated in |
dhollowa
2012/04/30 16:03:09
The TODO should be removed as well.
gavinp
2012/04/30 16:27:16
Doh. That was left in due to rebasing slippery fi
|
// personal_data_manager.cc. |
-template<typename T> |
-T* address_of(T& v) { |
- return &v; |
-} |
string16 LimitDataSize(const string16& data) { |
if (data.size() > AutofillTable::kMaxDataLength) |