Home | History | Annotate | Download | only in autofill

Lines Matching refs:DialogNotification

31 DialogNotification::DialogNotification() : type_(NONE) {}
33 DialogNotification::DialogNotification(Type type,
49 DialogNotification::~DialogNotification() {}
51 SkColor DialogNotification::GetBackgroundColor() const {
53 case DialogNotification::WALLET_USAGE_CONFIRMATION:
55 case DialogNotification::REQUIRED_ACTION:
56 case DialogNotification::WALLET_ERROR:
58 case DialogNotification::DEVELOPER_WARNING:
59 case DialogNotification::SECURITY_WARNING:
61 case DialogNotification::NONE:
69 SkColor DialogNotification::GetBorderColor() const {
71 case DialogNotification::WALLET_USAGE_CONFIRMATION:
73 case DialogNotification::REQUIRED_ACTION:
74 case DialogNotification::WALLET_ERROR:
75 case DialogNotification::DEVELOPER_WARNING:
76 case DialogNotification::SECURITY_WARNING:
77 case DialogNotification::NONE:
85 SkColor DialogNotification::GetTextColor() const {
87 case DialogNotification::REQUIRED_ACTION:
88 case DialogNotification::WALLET_ERROR:
89 case DialogNotification::WALLET_USAGE_CONFIRMATION:
91 case DialogNotification::DEVELOPER_WARNING:
92 case DialogNotification::SECURITY_WARNING:
94 case DialogNotification::NONE:
102 bool DialogNotification::HasArrow() const {
103 return type_ == DialogNotification::WALLET_ERROR ||
104 type_ == DialogNotification::WALLET_USAGE_CONFIRMATION;
107 bool DialogNotification::HasCheckbox() const {
108 return type_ == DialogNotification::WALLET_USAGE_CONFIRMATION;