| Index: ui/views/controls/textfield/textfield.h
|
| diff --git a/ui/views/controls/textfield/textfield.h b/ui/views/controls/textfield/textfield.h
|
| index 4b255f04b899bd66c1e8360f6c5e4019c49304c7..57a547dae9c3c7a1efdb62e80b1518dfee86e029 100644
|
| --- a/ui/views/controls/textfield/textfield.h
|
| +++ b/ui/views/controls/textfield/textfield.h
|
| @@ -157,12 +157,6 @@ class VIEWS_EXPORT Textfield : public View {
|
| // NOTE: in most cases height could be changed instead.
|
| void SetVerticalMargins(int top, int bottom);
|
|
|
| - // Set the text vertical alignment. Text is vertically centered by default.
|
| - gfx::VerticalAlignment vertical_alignment() const {
|
| - return vertical_alignment_;
|
| - }
|
| - void SetVerticalAlignment(gfx::VerticalAlignment alignment);
|
| -
|
| // Sets the default width of the text control. See default_width_in_chars_.
|
| void set_default_width_in_chars(int default_width) {
|
| default_width_in_chars_ = default_width;
|
| @@ -334,9 +328,6 @@ class VIEWS_EXPORT Textfield : public View {
|
| bool horizontal_margins_were_set_;
|
| bool vertical_margins_were_set_;
|
|
|
| - // The vertical alignment of text in the Textfield.
|
| - gfx::VerticalAlignment vertical_alignment_;
|
| -
|
| // Text to display when empty.
|
| string16 placeholder_text_;
|
|
|
|
|