Home | History | Annotate | Download | only in app_modal_dialogs

Lines Matching defs:dialog

9 void AppModalDialogQueue::AddDialog(AppModalDialog* dialog) {
11 ShowModalDialog(dialog);
14 app_modal_dialog_queue_.push(dialog);
18 AppModalDialog* dialog = GetNextDialog();
19 if (dialog)
20 ShowModalDialog(dialog);
27 // As part of showing a modal dialog we may end up back in this method
28 // (showing a dialog activates the TabContents, which can trigger a call
30 // activate the tab contents the dialog is shown.
48 void AppModalDialogQueue::ShowModalDialog(AppModalDialog* dialog) {
51 // dialog. Also, if the dialog calls |ShowNextDialog()| before returning, that
54 active_dialog_ = dialog;
56 dialog->ShowModalDialog();
62 AppModalDialog* dialog = app_modal_dialog_queue_.front();
64 if (dialog->IsValid())
65 return dialog;
66 delete dialog;