/external/chromium/chrome/browser/ui/views/bookmarks/ |
bookmark_bar_view_unittest.cc | 28 TestingProfile profile2; local 29 profile2.CreateBookmarkModel(true); 30 profile2.BlockUntilBookmarkModelLoaded(); 32 bookmark_bar.SetProfile(&profile2);
|
/external/chromium/chrome/browser/extensions/ |
extension_process_manager_unittest.cc | 38 TestingProfile profile2; local 40 ExtensionProcessManager::Create(&profile2));
|
extension_cookies_unittest.cc | 49 OtrTestingProfile* profile2) { 50 profile1->set_linked_profile(profile2); 51 profile2->set_linked_profile(profile1);
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_log_enabled_unittest.cc | 67 scoped_ptr<TestingProfile> profile2( 76 ActivityLog* activity_log2 = ActivityLog::GetInstance(profile2.get()); 81 profile2->GetPrefs()->GetInteger(prefs::kWatchdogExtensionActive)); 91 scoped_ptr<TestingProfile> profile2( 99 profile2->GetPrefs()->GetInteger(prefs::kWatchdogExtensionActive)); 106 ActivityLog* activity_log2 = ActivityLog::GetInstance(profile2.get()); 112 profile2->GetPrefs()->GetInteger(prefs::kWatchdogExtensionActive)); 127 scoped_ptr<TestingProfile> profile2( 138 ActivityLog* activity_log2 = ActivityLog::GetInstance(profile2.get()); 146 profile2->GetPrefs()->GetInteger(prefs::kWatchdogExtensionActive)) [all...] |
/external/chromium/chrome/browser/autofill/ |
autofill_ie_toolbar_import_win_unittest.cc | 51 ValueDescription profile2[] = { member in namespace:__anon4287 149 CreateSubkey(&profile_key, L"1", profile2, arraysize(profile2)); 176 EXPECT_EQ(profiles[0].GetInfo(NAME_FIRST), profile2[0].value); 177 EXPECT_EQ(profiles[0].GetInfo(NAME_LAST), profile2[1].value); 178 EXPECT_EQ(profiles[0].GetInfo(EMAIL_ADDRESS), profile2[2].value); 179 EXPECT_EQ(profiles[0].GetInfo(COMPANY_NAME), profile2[3].value); 180 EXPECT_EQ(profiles[0].GetInfo(PHONE_FAX_COUNTRY_CODE), profile2[6].value); 181 EXPECT_EQ(profiles[0].GetInfo(PHONE_FAX_CITY_CODE), profile2[5].value);
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
sync_app_helper.cc | 106 bool SyncAppHelper::AppStatesMatch(Profile* profile1, Profile* profile2) { 108 profile1, profile2)) 112 const AppStateMap& state_map2 = GetAppStates(profile2); 115 << " does not match profile " << profile2->GetDebugName(); 124 << " do not match profile " << profile2->GetDebugName(); 131 DVLOG(2) << "Apps for profile " << profile2->GetDebugName() 136 << " do not match profile " << profile2->GetDebugName();
|
sync_app_helper.h | 26 // Returns true iff |profile1| and |profile2| have the same apps and 28 bool AppStatesMatch(Profile* profile1, Profile* profile2);
|
sync_extension_helper.cc | 228 Profile* profile1, Profile* profile2) { 230 const ExtensionStateMap& state_map2 = GetExtensionStates(profile2); 233 << " does not match profile " << profile2->GetDebugName(); 242 << " do not match profile " << profile2->GetDebugName(); 246 << " do not match profile " << profile2->GetDebugName();
|
sync_extension_helper.h | 74 // Returns true iff |profile1| and |profile2| have the same extensions and 76 static bool ExtensionStatesMatch(Profile* profile1, Profile* profile2);
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_ie_toolbar_import_win_unittest.cc | 54 ValueDescription profile2[] = { member in namespace:autofill::__anon10085 150 CreateSubkey(&profile_key, L"1", profile2, arraysize(profile2)); 181 EXPECT_EQ(profile2[0].value, profiles[0].GetRawInfo(NAME_FIRST)); 182 EXPECT_EQ(profile2[1].value, profiles[0].GetRawInfo(NAME_LAST)); 183 EXPECT_EQ(profile2[2].value, profiles[0].GetRawInfo(EMAIL_ADDRESS)); 184 EXPECT_EQ(profile2[3].value, profiles[0].GetRawInfo(COMPANY_NAME));
|
/external/chromium_org/chrome/browser/background/ |
background_mode_manager_unittest.cc | 258 TestingProfile* profile2 = profile_manager->CreateTestingProfile("p2"); local 262 manager.RegisterProfile(profile2); 274 manager.OnApplicationListChanged(profile2); 288 manager.OnApplicationListChanged(profile2); 301 TestingProfile* profile2 = profile_manager->CreateTestingProfile("p2"); local 305 manager.RegisterProfile(profile2); 324 manager.OnApplicationListChanged(profile2); 336 manager.OnApplicationListChanged(profile2); 368 TestingProfile* profile2 = profile_manager->CreateTestingProfile("p2"); local 369 manager.RegisterProfile(profile2); 559 TestingProfile* profile2 = profile_manager->CreateTestingProfile("p2"); local [all...] |
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/ |
PersonalDataManagerTest.java | 43 AutofillProfile profile2 = new AutofillProfile( local 47 String profileTwoGUID = mHelper.setProfile(profile2); 132 AutofillProfile profile2 = new AutofillProfile( local 136 String profileGuid2 = mHelper.setProfile(profile2);
|
/external/chromium_org/chrome/browser/webdata/ |
autofill_profile_syncable_service_unittest.cc | 204 AutofillProfile profile2(guid_synced2, origin_synced2); 205 profile2.SetRawInfo(autofill::NAME_FIRST, UTF8ToUTF16("Harry")); 206 data_list.push_back(autofill_syncable_service_.CreateData(profile2)); 221 expected_bundle.profiles_to_add.push_back(&profile2); 260 AutofillProfile profile2(guid_synced2, origin_synced2); 261 profile2.SetRawInfo(autofill::NAME_FIRST, UTF8ToUTF16("Tom")); 262 profile2.SetRawInfo(autofill::ADDRESS_HOME_LINE1, UTF8ToUTF16("2 2nd st")); 263 data_list.push_back(autofill_syncable_service_.CreateData(profile2)); 265 AutofillProfile expected_profile(profile2); 317 AutofillProfile profile2(guid_synced2, origin_synced2) [all...] |
/external/chromium/chrome/browser/profiles/ |
profile_manager_unittest.cc | 139 Profile* profile2; local 145 profile2 = profile_manager_->GetProfile(dest_path2); 146 ASSERT_TRUE(profile2); 151 EXPECT_TRUE(profile2->GetBookmarkModel()); 152 EXPECT_TRUE(profile2->GetHistoryService(Profile::EXPLICIT_ACCESS));
|
/external/chromium_org/chrome/browser/profiles/ |
profile_manager_unittest.cc | 209 TestingProfile* profile2 = local 211 ASSERT_TRUE(profile2); 219 profile2->CreateBookmarkModel(true); 220 EXPECT_TRUE(BookmarkModelFactory::GetForProfile(profile2)); 221 ASSERT_TRUE(profile2->CreateHistoryService(true, false)); 222 EXPECT_TRUE(HistoryServiceFactory::GetForProfile(profile2, 456 TestingProfile* profile2 = local 458 ASSERT_TRUE(profile2); 473 // And for profile2. 474 Browser::CreateParams profile2_params(profile2, chrome::GetActiveDesktop()) 522 TestingProfile* profile2 = local 576 scoped_ptr<TestingProfile> profile2 = builder.Build(); local [all...] |
/external/chromium_org/chrome/browser/extensions/ |
process_manager_unittest.cc | 119 TestingProfile profile2; local 120 scoped_ptr<ProcessManager> manager2(ProcessManager::Create(&profile2));
|
user_script_listener_unittest.cc | 284 TestingProfile profile2; local 292 content::Source<Profile>(&profile2), 302 // be blocked waiting for profile2. 311 // After profile2 is ready, the request should proceed. 314 content::Source<Profile>(&profile2),
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_custom_dictionary_unittest.cc | 220 TestingProfile profile2; local 224 &profile2, &BuildSpellcheckService)); 463 TestingProfile profile2; local 467 &profile2, &BuildSpellcheckService)); 509 TestingProfile profile2; local 513 &profile2, &BuildSpellcheckService)); 552 TestingProfile profile2; local 556 &profile2, &BuildSpellcheckService)); 604 TestingProfile profile2; local 608 &profile2, &BuildSpellcheckService)) 655 TestingProfile profile2; local 701 TestingProfile profile2; local 752 TestingProfile profile2; local 790 TestingProfile profile2; local 837 TestingProfile profile2; local 948 TestingProfile profile2; local [all...] |
/external/chromium_org/extensions/browser/ |
lazy_background_task_queue_unittest.cc | 181 TestingProfile profile2; local 182 queue.ProcessPendingTasks(NULL, &profile2, extension);
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_node_data_unittest.cc | 104 TestingProfile profile2; local 105 EXPECT_TRUE(read_data.GetFirstNode(&profile2) == NULL); 150 TestingProfile profile2; local 151 EXPECT_TRUE(read_data.GetFirstNode(&profile2) == NULL);
|
/external/chromium_org/chrome/browser/importer/ |
profile_writer_unittest.cc | 137 // Add bookmarks via ProfileWriter to profile1 when profile2 also exists. 139 TestingProfile profile2; local 140 profile2.CreateBookmarkModel(true); 143 BookmarkModelFactory::GetForProfile(&profile2);
|
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_node_data_unittest.cc | 123 TestingProfile profile2; local 124 EXPECT_TRUE(read_data.GetFirstNode(&profile2) == NULL); 170 TestingProfile profile2; local 171 EXPECT_TRUE(read_data.GetFirstNode(&profile2) == NULL);
|
/external/chromium/chrome/browser/webdata/ |
web_data_service_unittest.cc | 326 AutofillProfile profile2; local 327 profile2.SetInfo(NAME_FIRST, ASCIIToUTF16("Alice")); 333 wds_->AddAutofillProfile(profile2); 343 EXPECT_EQ(profile2, *consumer.result()[1]); 371 EXPECT_EQ(profile2, *consumer2.result()[1]);
|
/external/chromium_org/chrome/browser/autofill/ |
autofill_browsertest.cc | 303 AutofillProfile profile2; local 304 profile2.SetRawInfo(NAME_FIRST, 308 profile2.SetRawInfo(NAME_LAST, WideToUTF16(L"aguantó")); 309 profile2.SetRawInfo(ADDRESS_HOME_ZIP, WideToUTF16(L"HOME 94043")); 310 profiles.push_back(profile2);
|
/external/chromium_org/components/autofill/core/browser/webdata/ |
web_data_service_unittest.cc | 363 AutofillProfile profile2; local 364 profile2.SetRawInfo(NAME_FIRST, ASCIIToUTF16("Alice")); 371 wds_->AddAutofillProfile(profile2); 381 EXPECT_EQ(profile2, *consumer.result()[1]); 404 EXPECT_EQ(profile2, *consumer2.result()[1]);
|