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

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

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "components/autofill/browser/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.h" 15 #include "base/stl_util.h"
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 887
888 AutofillCountry::AutofillCountry(const std::string& country_code, 888 AutofillCountry::AutofillCountry(const std::string& country_code,
889 const string16& name, 889 const string16& name,
890 const string16& postal_code_label, 890 const string16& postal_code_label,
891 const string16& state_label) 891 const string16& state_label)
892 : country_code_(country_code), 892 : country_code_(country_code),
893 name_(name), 893 name_(name),
894 postal_code_label_(postal_code_label), 894 postal_code_label_(postal_code_label),
895 state_label_(state_label) { 895 state_label_(state_label) {
896 } 896 }
OLDNEW
« no previous file with comments | « components/autofill/browser/autofill_country.h ('k') | components/autofill/browser/autofill_country_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698