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

Side by Side Diff: chrome/browser/webdata/autofill_profile_syncable_service_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 "base/location.h" 5 #include "base/location.h"
6 #include "base/message_loop.h" 6 #include "base/message_loop.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/webdata/autofill_profile_syncable_service.h" 8 #include "chrome/browser/webdata/autofill_profile_syncable_service.h"
9 #include "components/autofill/browser/autofill_profile.h" 9 #include "components/autofill/core/browser/autofill_profile.h"
10 #include "components/autofill/browser/webdata/autofill_change.h" 10 #include "components/autofill/core/browser/webdata/autofill_change.h"
11 #include "content/public/test/test_browser_thread.h" 11 #include "content/public/test/test_browser_thread.h"
12 #include "sync/api/sync_error_factory.h" 12 #include "sync/api/sync_error_factory.h"
13 #include "sync/api/sync_error_factory_mock.h" 13 #include "sync/api/sync_error_factory_mock.h"
14 #include "sync/protocol/sync.pb.h" 14 #include "sync/protocol/sync.pb.h"
15 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 17
18 using ::testing::_; 18 using ::testing::_;
19 using ::testing::DoAll; 19 using ::testing::DoAll;
20 using ::testing::Eq; 20 using ::testing::Eq;
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 profile1.GetRawMultiInfo(autofill::EMAIL_ADDRESS, &values); 436 profile1.GetRawMultiInfo(autofill::EMAIL_ADDRESS, &values);
437 ASSERT_EQ(values.size(), 3U); 437 ASSERT_EQ(values.size(), 3U);
438 EXPECT_EQ(values[0], UTF8ToUTF16("1@1.com")); 438 EXPECT_EQ(values[0], UTF8ToUTF16("1@1.com"));
439 EXPECT_EQ(values[1], UTF8ToUTF16("2@1.com")); 439 EXPECT_EQ(values[1], UTF8ToUTF16("2@1.com"));
440 EXPECT_EQ(values[2], UTF8ToUTF16("3@1.com")); 440 EXPECT_EQ(values[2], UTF8ToUTF16("3@1.com"));
441 441
442 profile1.GetRawMultiInfo(autofill::PHONE_HOME_WHOLE_NUMBER, &values); 442 profile1.GetRawMultiInfo(autofill::PHONE_HOME_WHOLE_NUMBER, &values);
443 ASSERT_EQ(values.size(), 1U); 443 ASSERT_EQ(values.size(), 1U);
444 EXPECT_EQ(values[0], UTF8ToUTF16("650234567")); 444 EXPECT_EQ(values[0], UTF8ToUTF16("650234567"));
445 } 445 }
OLDNEW
« no previous file with comments | « chrome/browser/webdata/autofill_profile_syncable_service.cc ('k') | chrome/browser/webdata/web_data_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698