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

Side by Side Diff: components/autofill/core/common/password_form_fill_data.cc

Issue 655433004: Get rid of unnecessary forward declarations in components/autofill/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporated Ilya's review comments Created 6 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/webdata/autofill_webdata_backend_impl.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/common/password_form_fill_data.h" 5 #include "components/autofill/core/common/password_form_fill_data.h"
6 6
7 #include "base/logging.h"
8 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
9 #include "components/autofill/core/common/form_field_data.h" 8 #include "components/autofill/core/common/form_field_data.h"
10 9
11 namespace autofill { 10 namespace autofill {
12 11
13 UsernamesCollectionKey::UsernamesCollectionKey() {} 12 UsernamesCollectionKey::UsernamesCollectionKey() {}
14 13
15 UsernamesCollectionKey::~UsernamesCollectionKey() {} 14 UsernamesCollectionKey::~UsernamesCollectionKey() {}
16 15
17 bool UsernamesCollectionKey::operator<( 16 bool UsernamesCollectionKey::operator<(
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 key.username = iter->first; 74 key.username = iter->first;
76 key.password = iter->second->password_value; 75 key.password = iter->second->password_value;
77 key.realm = iter->second->original_signon_realm; 76 key.realm = iter->second->original_signon_realm;
78 result->other_possible_usernames[key] = 77 result->other_possible_usernames[key] =
79 iter->second->other_possible_usernames; 78 iter->second->other_possible_usernames;
80 } 79 }
81 } 80 }
82 } 81 }
83 82
84 } // namespace autofill 83 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/browser/webdata/autofill_webdata_backend_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698