summaryrefslogtreecommitdiffstats
path: root/views/controls/button/native_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'views/controls/button/native_button.h')
-rw-r--r--views/controls/button/native_button.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/views/controls/button/native_button.h b/views/controls/button/native_button.h
index 428d0ad..c1ecfb8 100644
--- a/views/controls/button/native_button.h
+++ b/views/controls/button/native_button.h
@@ -42,9 +42,6 @@ class NativeButton : public Button {
// registered, use SetIsDefault for that).
void SetAppearsAsDefault(bool default_button);
- void set_minimum_size(const gfx::Size& minimum_size) {
- minimum_size_ = minimum_size;
- }
void set_ignore_minimum_size(bool ignore_minimum_size) {
ignore_minimum_size_ = ignore_minimum_size;
}
@@ -91,12 +88,6 @@ class NativeButton : public Button {
// is false. Set to true to create narrower buttons.
bool ignore_minimum_size_;
- // The minimum size of the button from the specified size in native dialog
- // units. The definition of this unit may vary from platform to platform. If
- // the width/height is non-zero, the preferred size of the button will not be
- // less than this value when the dialog units are converted to pixels.
- gfx::Size minimum_size_;
-
DISALLOW_COPY_AND_ASSIGN(NativeButton);
};