Home
last modified time | relevance | path

Searched refs:SectionIsActive (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/ui/autofill/
Dmock_autofill_dialog_view_delegate.cc56 ON_CALL(*this, SectionIsActive(_)).WillByDefault(Return(true)); in MockAutofillDialogViewDelegate()
57 ON_CALL(*this, SectionIsActive(SECTION_CC_BILLING)) in MockAutofillDialogViewDelegate()
Dmock_autofill_dialog_view_delegate.h44 MOCK_CONST_METHOD1(SectionIsActive, bool(DialogSection));
Dautofill_dialog_view_delegate.h106 virtual bool SectionIsActive(DialogSection section) const = 0;
Dautofill_dialog_controller_unittest.cc1670 EXPECT_TRUE(controller()->SectionIsActive(SECTION_SHIPPING)); in TEST_F()
1671 EXPECT_TRUE(controller()->SectionIsActive(SECTION_CC_BILLING)); in TEST_F()
1686 EXPECT_FALSE(controller()->SectionIsActive(SECTION_SHIPPING)); in TEST_F()
1687 EXPECT_TRUE(controller()->SectionIsActive(SECTION_CC_BILLING)); in TEST_F()
1922 EXPECT_TRUE(controller()->SectionIsActive(SECTION_BILLING)); in TEST_F()
1923 EXPECT_FALSE(controller()->SectionIsActive(SECTION_CC_BILLING)); in TEST_F()
1942 EXPECT_FALSE(controller()->SectionIsActive(SECTION_BILLING)); in TEST_F()
1943 EXPECT_TRUE(controller()->SectionIsActive(SECTION_CC_BILLING)); in TEST_F()
2100 EXPECT_FALSE(controller()->SectionIsActive(SECTION_SHIPPING)); in TEST_F()
2121 EXPECT_FALSE(controller()->SectionIsActive(SECTION_SHIPPING)); in TEST_F()
Dautofill_dialog_controller_impl.cc860 bool AutofillDialogControllerImpl::SectionIsActive(DialogSection section) in SectionIsActive() function in autofill::AutofillDialogControllerImpl
1172 if (!SectionIsActive(section)) in RestoreUserInputFromSnapshot()
2810 if (!SectionIsActive(section)) in SuggestionsUpdated()
2835 if (!SectionIsActive(section)) in SuggestionsUpdated()
2850 if (!SectionIsActive(section)) in FillOutputForSectionWithComparator()
2945 DCHECK(SectionIsActive(section)); in GetValueFromSection()
3092 return SectionIsActive(SECTION_SHIPPING) && in ShouldUseBillingForShipping()
3309 if (SectionIsActive(SECTION_SHIPPING)) { in DoFinishSubmit()
3317 if (!SectionIsActive(section)) in DoFinishSubmit()
Dautofill_dialog_controller_impl.h122 virtual bool SectionIsActive(DialogSection section) const OVERRIDE;
/external/chromium_org/chrome/browser/ui/views/autofill/
Dautofill_dialog_views.cc1857 if (delegate_->SectionIsActive(SECTION_CC)) in GetCreditCardSection()
1860 DCHECK(delegate_->SectionIsActive(SECTION_CC_BILLING)); in GetCreditCardSection()
2099 group.container->SetVisible(delegate_->SectionIsActive(group.section)); in UpdateDetailsGroupState()
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
Dautofill_section_container.mm331 [view_ setHidden:!delegate_->SectionIsActive(section_)];