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

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

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 "components/autofill/browser/autofill_ie_toolbar_import_win.h" 5 #include "components/autofill/core/browser/autofill_ie_toolbar_import_win.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "base/win/registry.h" 9 #include "base/win/registry.h"
10 #include "components/autofill/browser/autofill_profile.h" 10 #include "components/autofill/core/browser/autofill_profile.h"
11 #include "components/autofill/browser/credit_card.h" 11 #include "components/autofill/core/browser/credit_card.h"
12 #include "components/autofill/browser/field_types.h" 12 #include "components/autofill/core/browser/field_types.h"
13 #include "sync/util/data_encryption_win.h" 13 #include "sync/util/data_encryption_win.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 15
16 using base::win::RegKey; 16 using base::win::RegKey;
17 17
18 namespace autofill { 18 namespace autofill {
19 19
20 // Defined in autofill_ie_toolbar_import_win.cc. Not exposed in the header file. 20 // Defined in autofill_ie_toolbar_import_win.cc. Not exposed in the header file.
21 bool ImportCurrentUserProfiles(const std::string& app_locale, 21 bool ImportCurrentUserProfiles(const std::string& app_locale,
22 std::vector<AutofillProfile>* profiles, 22 std::vector<AutofillProfile>* profiles,
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 profiles.clear(); 199 profiles.clear();
200 credit_cards.clear(); 200 credit_cards.clear();
201 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards)); 201 EXPECT_TRUE(ImportCurrentUserProfiles("en-US", &profiles, &credit_cards));
202 // Profiles are not protected. 202 // Profiles are not protected.
203 EXPECT_EQ(2U, profiles.size()); 203 EXPECT_EQ(2U, profiles.size());
204 // Credit cards are. 204 // Credit cards are.
205 EXPECT_EQ(0U, credit_cards.size()); 205 EXPECT_EQ(0U, credit_cards.size());
206 } 206 }
207 207
208 } // namespace autofill 208 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698