Lines Matching defs:parent
71 const FilePath& default_path, gfx::NativeWindow parent);
74 const FilePath& default_path, gfx::NativeWindow parent);
77 const FilePath& default_path, gfx::NativeWindow parent);
80 const FilePath& default_path, gfx::NativeWindow parent);
102 gfx::NativeWindow parent);
138 // The set of all parent windows for which we are currently running dialogs.
248 // Set window-to-parent modality by adding the dialog to the same window
249 // group as the parent.
351 gfx::NativeWindow parent) {
353 gtk_file_chooser_dialog_new(title.c_str(), parent,
380 gfx::NativeWindow parent) {
385 gtk_file_chooser_dialog_new(title_string.c_str(), parent,
407 gfx::NativeWindow parent) {
410 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent);
420 gfx::NativeWindow parent) {
423 GtkWidget* dialog = CreateFileOpenHelper(title_string, default_path, parent);
431 const FilePath& default_path, gfx::NativeWindow parent) {
436 gtk_file_chooser_dialog_new(title_string.c_str(), parent,
474 // Parent may be NULL in a few cases: 1) on shutdown when
476 // windows got destroyed, or 2) when the parent tab has been opened by
479 GtkWindow* parent = gtk_window_get_transient_for(GTK_WINDOW(dialog));
480 if (!parent)
482 std::set<GtkWindow*>::iterator iter = parents_.find(parent);