| Index: chrome/browser/ui/views/uninstall_view.cc
|
| diff --git a/chrome/browser/ui/views/uninstall_view.cc b/chrome/browser/ui/views/uninstall_view.cc
|
| index e15118e0f2462452573e8371005a6e26d631dab1..a3fc778bc80803c901b964e065fa9d7dedf33a6b 100644
|
| --- a/chrome/browser/ui/views/uninstall_view.cc
|
| +++ b/chrome/browser/ui/views/uninstall_view.cc
|
| @@ -129,11 +129,10 @@ bool UninstallView::Cancel() {
|
| }
|
|
|
| string16 UninstallView::GetDialogButtonLabel(ui::DialogButton button) const {
|
| - // We only want to give custom name to OK button - 'Uninstall'. Cancel
|
| - // button remains same.
|
| + // Label the OK button 'Uninstall'; Cancel remains the same.
|
| if (button == ui::DIALOG_BUTTON_OK)
|
| return l10n_util::GetStringUTF16(IDS_UNINSTALL_BUTTON_TEXT);
|
| - return string16();
|
| + return views::DialogDelegateView::GetDialogButtonLabel(button);
|
| }
|
|
|
| void UninstallView::ButtonPressed(views::Button* sender,
|
|
|