| Index: chrome/browser/autofill/personal_data_manager.cc
|
| ===================================================================
|
| --- chrome/browser/autofill/personal_data_manager.cc (revision 46425)
|
| +++ chrome/browser/autofill/personal_data_manager.cc (working copy)
|
| @@ -234,22 +234,6 @@
|
| }
|
| }
|
|
|
| -void PersonalDataManager::GetImportedFormData(AutoFillProfile** profile,
|
| - CreditCard** credit_card) {
|
| - DCHECK(profile);
|
| - DCHECK(credit_card);
|
| -
|
| - if (imported_profile_.get()) {
|
| - imported_profile_->set_label(ASCIIToUTF16(kUnlabeled));
|
| - }
|
| - *profile = imported_profile_.get();
|
| -
|
| - if (imported_credit_card_.get()) {
|
| - imported_credit_card_->set_label(ASCIIToUTF16(kUnlabeled));
|
| - }
|
| - *credit_card = imported_credit_card_.get();
|
| -}
|
| -
|
| void PersonalDataManager::SetProfiles(std::vector<AutoFillProfile>* profiles) {
|
| if (profile_->IsOffTheRecord())
|
| return;
|
|
|