Home | History | Annotate | Download | only in views

Lines Matching defs:dialog

25     SelectFileDialogExtension* dialog = new SelectFileDialogExtension(listener,
27 // Simulate the dialog opening.
29 dialog->AddPending(kDefaultTabId);
31 return dialog;
62 // Client of a SelectFileDialog that deletes itself whenever the dialog
75 SelectFileDialogExtension* dialog() const { return dialog_.get(); }
91 scoped_refptr<SelectFileDialogExtension> dialog =
96 // Simulate closing the dialog so the listener gets invoked.
97 dialog->ExtensionDialogClosing(NULL);
104 scoped_refptr<SelectFileDialogExtension> dialog =
106 // Simulate cancelling the dialog.
108 // Simulate closing the dialog so the listener gets invoked.
109 dialog->ExtensionDialogClosing(NULL);
120 // Simulate closing the dialog so the listener gets invoked.
121 client->dialog()->ExtensionDialogClosing(NULL);