HomeSort by relevance Sort by last modified time
    Searched refs:billing_profile (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/browser/ui/autofill/
mock_new_credit_card_bubble_controller.cc 20 scoped_ptr<AutofillProfile> billing_profile) {
22 CHECK(billing_profile);
25 billing_profile_ = billing_profile.Pass();
mock_new_credit_card_bubble_controller.h 23 scoped_ptr<AutofillProfile> billing_profile);
27 const AutofillProfile* billing_profile() const { function in class:autofill::MockNewCreditCardBubbleController
new_credit_card_bubble_controller.cc 41 scoped_ptr<AutofillProfile> billing_profile) {
44 billing_profile.Pass());
91 scoped_ptr<AutofillProfile> billing_profile) {
93 DCHECK(billing_profile);
96 billing_profile_ = billing_profile.Pass();
new_credit_card_bubble_controller.h 64 // and |billing_profile| are transferred by this call.
67 scoped_ptr<AutofillProfile> billing_profile);
103 scoped_ptr<AutofillProfile> billing_profile);
autofill_dialog_controller_unittest.cc 362 scoped_ptr<AutofillProfile> billing_profile) OVERRIDE {
364 billing_profile.Pass());
    [all...]
autofill_dialog_controller_impl.cc 4067 scoped_ptr<AutofillProfile> billing_profile; local
    [all...]
autofill_dialog_controller_impl.h 294 // |billing_profile| to the bubble. Exposed for testing.
297 scoped_ptr<AutofillProfile> billing_profile);
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table_unittest.cc 675 AutofillProfile billing_profile = home_profile; local
676 billing_profile.set_guid(base::GenerateGUID());
677 billing_profile.set_origin("https://www.example.com/");
678 billing_profile.SetRawInfo(ADDRESS_HOME_LINE1,
680 billing_profile.SetRawInfo(ADDRESS_HOME_LINE2, ASCIIToUTF16("suite 3"));
683 EXPECT_TRUE(table_->AddAutofillProfile(billing_profile));
687 ASSERT_TRUE(table_->GetAutofillProfile(billing_profile.guid(), &db_profile));
688 EXPECT_EQ(billing_profile, *db_profile);
691 s_billing.BindString(0, billing_profile.guid());
700 billing_profile.SetRawInfo(NAME_FIRST, ASCIIToUTF16("Jane"))
    [all...]

Completed in 6758 milliseconds