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

Side by Side Diff: components/autofill/core/browser/suggestion.cc

Issue 1404133004: IWYU for autofill suggestion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « components/autofill/core/browser/suggestion.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/autofill/core/browser/suggestion.h" 5 #include "components/autofill/core/browser/suggestion.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "components/autofill/core/browser/autofill_profile.h"
9 #include "components/autofill/core/browser/credit_card.h"
10 8
11 namespace autofill { 9 namespace autofill {
12 10
13 Suggestion::Suggestion() 11 Suggestion::Suggestion()
14 : frontend_id(0), 12 : frontend_id(0),
15 match(PREFIX_MATCH) { 13 match(PREFIX_MATCH) {
16 } 14 }
17 15
18 Suggestion::Suggestion(const Suggestion& other) 16 Suggestion::Suggestion(const Suggestion& other)
19 : backend_id(other.backend_id), 17 : backend_id(other.backend_id),
(...skipping 18 matching lines...) Expand all
38 value(base::UTF8ToUTF16(v)), 36 value(base::UTF8ToUTF16(v)),
39 label(base::UTF8ToUTF16(l)), 37 label(base::UTF8ToUTF16(l)),
40 icon(base::UTF8ToUTF16(i)), 38 icon(base::UTF8ToUTF16(i)),
41 match(PREFIX_MATCH) { 39 match(PREFIX_MATCH) {
42 } 40 }
43 41
44 Suggestion::~Suggestion() { 42 Suggestion::~Suggestion() {
45 } 43 }
46 44
47 } // namespace autofill 45 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/suggestion.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698