| Index: ui/views/controls/message_box_view.h
|
| diff --git a/ui/views/controls/message_box_view.h b/ui/views/controls/message_box_view.h
|
| index cb708e6013d9f7960a108e7ec09dba38dfe67aab..b56b3d112438955d0b8bc4bc06211f5c1b5b01bd 100644
|
| --- a/ui/views/controls/message_box_view.h
|
| +++ b/ui/views/controls/message_box_view.h
|
| @@ -10,14 +10,9 @@
|
| #include "base/strings/string16.h"
|
| #include "ui/views/view.h"
|
|
|
| -namespace gfx {
|
| -class ImageSkia;
|
| -}
|
| -
|
| namespace views {
|
|
|
| class Checkbox;
|
| -class ImageView;
|
| class Label;
|
| class Link;
|
| class LinkListener;
|
| @@ -66,10 +61,6 @@ class VIEWS_EXPORT MessageBoxView : public View {
|
| // the message box has no checkbox.)
|
| bool IsCheckBoxSelected();
|
|
|
| - // Adds |icon| to the upper left of the message box or replaces the current
|
| - // icon. To start out, the message box has no icon.
|
| - void SetIcon(const gfx::ImageSkia& icon);
|
| -
|
| // Adds a checkbox with the specified label to the message box if this is the
|
| // first call. Otherwise, it changes the label of the current checkbox. To
|
| // start, the message box has no checkbox until this function is called.
|
| @@ -107,9 +98,6 @@ class VIEWS_EXPORT MessageBoxView : public View {
|
| // Input text field for the message box.
|
| Textfield* prompt_field_;
|
|
|
| - // Icon displayed in the upper left corner of the message box.
|
| - ImageView* icon_;
|
| -
|
| // Checkbox for the message box.
|
| Checkbox* checkbox_;
|
|
|
|
|