| Index: chrome/browser/chromeos/enrollment_dialog_view.cc
|
| diff --git a/chrome/browser/chromeos/enrollment_dialog_view.cc b/chrome/browser/chromeos/enrollment_dialog_view.cc
|
| index c98afee57113fa40b6de0b3bbb4959cb7192c3b6..31e3762de60d2589edb619769e7d77428256dd11 100644
|
| --- a/chrome/browser/chromeos/enrollment_dialog_view.cc
|
| +++ b/chrome/browser/chromeos/enrollment_dialog_view.cc
|
| @@ -45,7 +45,7 @@ class EnrollmentDialogView : public views::DialogDelegateView {
|
| // views::DialogDelegateView overrides
|
| virtual int GetDialogButtons() const OVERRIDE;
|
| virtual bool Accept() OVERRIDE;
|
| - virtual void OnClose() OVERRIDE;
|
| + virtual void OnClosed() OVERRIDE;
|
| virtual string16 GetDialogButtonLabel(ui::DialogButton button) const OVERRIDE;
|
|
|
| // views::WidgetDelegate overrides
|
| @@ -112,7 +112,7 @@ bool EnrollmentDialogView::Accept() {
|
| return true;
|
| }
|
|
|
| -void EnrollmentDialogView::OnClose() {
|
| +void EnrollmentDialogView::OnClosed() {
|
| if (!accepted_)
|
| return;
|
| chrome::NavigateParams params(profile_,
|
|
|