summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-11 01:19:47 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-11 01:19:47 +0000
commit0bc24b5f255230a027a0a3b63c1ece5746519f39 (patch)
tree5d5cc2861278ee49c49058cf7fdc63927c7830a8 /chrome/browser/autofill
parent7c10f7553bf4da999f954e501fc2908e10dd3bcf (diff)
downloadchromium_src-0bc24b5f255230a027a0a3b63c1ece5746519f39.zip
chromium_src-0bc24b5f255230a027a0a3b63c1ece5746519f39.tar.gz
chromium_src-0bc24b5f255230a027a0a3b63c1ece5746519f39.tar.bz2
Cleanup: Remove unneeded includes of chrome_switches.h.
BUG=none TEST=none Review URL: http://codereview.chromium.org/6086003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill')
-rw-r--r--chrome/browser/autofill/autofill_manager.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_manager.cc b/chrome/browser/autofill/autofill_manager.cc
index 1010a90..4fa5241 100644
--- a/chrome/browser/autofill/autofill_manager.cc
+++ b/chrome/browser/autofill/autofill_manager.cc
@@ -5,7 +5,9 @@
#include "chrome/browser/autofill/autofill_manager.h"
#include <limits>
+#include <map>
#include <set>
+#include <utility>
#include "app/l10n_util.h"
#include "base/basictypes.h"
@@ -46,8 +48,8 @@ namespace {
const double kAutoFillPositiveUploadRateDefaultValue = 0.01;
const double kAutoFillNegativeUploadRateDefaultValue = 0.01;
-const string16::value_type kCreditCardPrefix[] = {'*',0};
-const string16::value_type kLabelSeparator[] = {';',' ','*',0};
+const string16::value_type kCreditCardPrefix[] = {'*', 0};
+const string16::value_type kLabelSeparator[] = {';', ' ', '*', 0};
// Removes duplicate suggestions whilst preserving their original order.
void RemoveDuplicateSuggestions(std::vector<string16>* values,