| Index: chrome/browser/chromeos/login/login_html_dialog.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/login_html_dialog.cc (revision 133597)
|
| +++ chrome/browser/chromeos/login/login_html_dialog.cc (working copy)
|
| @@ -56,11 +56,9 @@
|
| }
|
|
|
| void LoginHtmlDialog::Show() {
|
| - HtmlDialogView* html_view =
|
| - new HtmlDialogView(ProfileManager::GetDefaultProfile(), NULL, this);
|
| - views::Widget::CreateWindowWithParent(html_view, parent_window_);
|
| - html_view->InitDialog();
|
| - html_view->GetWidget()->Show();
|
| + views::Widget::CreateWindowWithParent(
|
| + new HtmlDialogView(ProfileManager::GetDefaultProfile(), NULL, this),
|
| + parent_window_)->Show();
|
| is_open_ = true;
|
| }
|
|
|
|
|