Home | History | Annotate | Download | only in app_modal_dialogs

Lines Matching defs:dialog

15 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) {
17 ShowModalDialog(dialog);
20 app_modal_dialog_queue_.push_back(dialog);
24 AppModalDialog* dialog = GetNextDialog();
25 if (dialog)
26 ShowModalDialog(dialog);
33 // As part of showing a modal dialog we may end up back in this method
34 // (showing a dialog activates the WebContents, which can trigger a call
36 // activate the tab contents the dialog is shown.
55 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) {
58 // dialog. Also, if the dialog calls |ShowNextDialog()| before returning, that
61 active_dialog_ = dialog;
63 dialog->ShowModalDialog();
69 AppModalDialog* dialog = app_modal_dialog_queue_.front();
71 if (dialog->IsValid())
72 return dialog;
73 delete dialog;