Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(702)

Side by Side Diff: chrome/browser/autofill/autofill_country.cc

Issue 7342047: Cleanup base/stl_util (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removed unneeded include + rebase Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/autofill/autofill_country.h" 5 #include "chrome/browser/autofill/autofill_country.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <map> 9 #include <map>
10 #include <utility> 10 #include <utility>
11 11
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/singleton.h" 14 #include "base/memory/singleton.h"
15 #include "base/stl_util-inl.h" 15 #include "base/stl_util.h"
16 #include "base/string_util.h" 16 #include "base/string_util.h"
17 #include "base/utf_string_conversions.h" 17 #include "base/utf_string_conversions.h"
18 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
19 #include "grit/generated_resources.h" 19 #include "grit/generated_resources.h"
20 #include "ui/base/l10n/l10n_util.h" 20 #include "ui/base/l10n/l10n_util.h"
21 #include "unicode/coll.h" 21 #include "unicode/coll.h"
22 #include "unicode/locid.h" 22 #include "unicode/locid.h"
23 #include "unicode/ucol.h" 23 #include "unicode/ucol.h"
24 #include "unicode/uloc.h" 24 #include "unicode/uloc.h"
25 #include "unicode/unistr.h" 25 #include "unicode/unistr.h"
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 629
630 AutofillCountry::AutofillCountry(const std::string& country_code, 630 AutofillCountry::AutofillCountry(const std::string& country_code,
631 const string16& name, 631 const string16& name,
632 const string16& postal_code_label, 632 const string16& postal_code_label,
633 const string16& state_label) 633 const string16& state_label)
634 : country_code_(country_code), 634 : country_code_(country_code),
635 name_(name), 635 name_(name),
636 postal_code_label_(postal_code_label), 636 postal_code_label_(postal_code_label),
637 state_label_(state_label) { 637 state_label_(state_label) {
638 } 638 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698