Home | History | Annotate | Download | only in printing

Lines Matching refs:initiator

17 // Test crashes on Aura due to initiator's native view having no parent.
33 // Create/Get a preview dialog for initiator.
41 // Create a reference to initiator contents.
42 WebContents* initiator = browser()->tab_strip_model()->GetActiveWebContents();
48 // Get the preview dialog for initiator.
49 PrintViewManager::FromWebContents(initiator)->PrintPreviewNow(false);
51 dialog_controller->GetOrCreatePreviewDialog(initiator);
56 EXPECT_NE(initiator, preview_dialog);
58 // Get the print preview dialog for the same initiator.
60 dialog_controller->GetOrCreatePreviewDialog(initiator);
65 // 1:1 relationship between initiator and preview dialog.
70 // initiators. If a preview dialog already exists for an initiator, that
71 // initiator gets focused.
125 // initiator should have focus.
134 // Check clearing the initiator details associated with a print preview dialog
135 // allows the initiator to create another print preview dialog.
143 // Create a reference to initiator contents.
144 WebContents* initiator = browser()->tab_strip_model()->GetActiveWebContents();
150 // Get the preview dialog for the initiator.
151 PrintViewManager::FromWebContents(initiator)->PrintPreviewNow(false);
153 dialog_controller->GetOrCreatePreviewDialog(initiator);
158 EXPECT_NE(initiator, preview_dialog);
160 // Clear the initiator details associated with the preview dialog.
163 // Get a new print preview dialog for the initiator.
165 dialog_controller->GetOrCreatePreviewDialog(initiator);