| Index: ui/views/controls/button/md_text_button.h
|
| diff --git a/ui/views/controls/button/md_text_button.h b/ui/views/controls/button/md_text_button.h
|
| index 97aa3c1af745199eb0054a6c47f8c4be7a8c68d3..f62979e33620de4b43c3d8717585f37501c7d39f 100644
|
| --- a/ui/views/controls/button/md_text_button.h
|
| +++ b/ui/views/controls/button/md_text_button.h
|
| @@ -32,8 +32,8 @@ class VIEWS_EXPORT MdTextButton : public LabelButton {
|
| static MdTextButton* Create(ButtonListener* listener,
|
| const base::string16& text);
|
|
|
| - // See |is_cta_|.
|
| - void SetCallToAction(bool cta);
|
| + // See |is_prominent_|.
|
| + void SetProminent(bool is_prominent);
|
| void set_bg_color_override(SkColor color) { bg_color_override_ = color; }
|
|
|
| // LabelButton:
|
| @@ -68,8 +68,8 @@ class VIEWS_EXPORT MdTextButton : public LabelButton {
|
| // |this|.
|
| internal::MdFocusRing* focus_ring_;
|
|
|
| - // True if this button uses call-to-action styling.
|
| - bool is_cta_;
|
| + // True if this button uses prominent styling (blue fill, etc.).
|
| + bool is_prominent_;
|
|
|
| // When set, this provides the background color.
|
| base::Optional<SkColor> bg_color_override_;
|
|
|