Searched refs:dialog (Results 126 - 150 of 270) sorted by relevance

1234567891011

/external/chromium_org/chrome/browser/chromeos/ui/
H A Didle_logout_dialog_view.h34 virtual void LogoutCurrentUser(IdleLogoutDialogView* dialog);
40 // A class to show the logout on idle dialog if the machine is in retail mode.
75 // Time at which the countdown is over and we should close the dialog.
/external/chromium_org/chrome/browser/ui/app_modal_dialogs/
H A Djavascript_dialog_manager.cc57 // extension opens a dialog its lazy background page must stay alive until the
58 // dialog closes.
72 // Allows an |extension| to shut down its lazy background page after a dialog
247 JavaScriptAppModalDialog* dialog = static_cast<JavaScriptAppModalDialog*>( local
251 dialog->SetOverridePromptText(*prompt_override);
252 dialog->native_dialog()->AcceptAppModalDialog();
254 dialog->native_dialog()->CancelAppModalDialog();
314 // If an extension opened this dialog then the extension may shut down its
315 // lazy background page after the dialog closes. (Dialogs are closed before
/external/chromium_org/chrome/browser/ui/views/extensions/
H A Dextension_dialog.cc82 ExtensionDialog* dialog = new ExtensionDialog(host, observer); local
83 dialog->set_title(title);
84 dialog->InitWindow(parent_window, width, height);
94 return dialog;
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dcharger_replacement_handler.cc30 ChargerReplacementDialog* dialog)
32 dialog_(dialog) {
295 ChargerLinkDialog* dialog = new ChargerLinkDialog(charger_window_, url); local
296 dialog->Show();
29 ChargerReplacementHandler( ChargerReplacementDialog* dialog) argument
/external/chromium_org/mojo/shell/android/apk/src/org/chromium/mojo_shell_apk/
H A DMojoShellActivity.java48 public void onClick(DialogInterface dialog, int button) {
/external/chromium_org/ui/views/window/
H A Ddialog_client_view.cc22 // conflict with other groups that could be in the dialog content.
118 // Use the escape key to close the window if there are no dialog buttons.
132 // The dialog is closing but no Accept or Cancel action has been performed
152 // Make the newly focused button default or restore the dialog's default.
301 // The old dialog style needs an explicit background color, while the new
302 // dialog style simply inherits the bubble's frame view color.
303 const DialogDelegate* dialog = GetDialogDelegate(); local
305 if (dialog && !dialog->UseNewStyleForThisDialog()) {
397 DialogDelegate* dialog local
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DActivityTest.java195 activity.dialog = this;
218 activity.dialog = this;
253 Dialog dialog = ShadowDialog.getLatestDialog();
254 assertTrue(dialog.isShowing());
262 Dialog dialog = ShadowDialog.getLatestDialog();
263 assertFalse(dialog.isShowing());
565 public Dialog dialog = null; field in class:ActivityTest.DialogLifeCycleActivity
575 return dialog;
579 protected void onPrepareDialog(int id, Dialog dialog) { argument
584 protected void onPrepareDialog(int id, Dialog dialog, Bundl argument
[all...]
/external/chromium_org/chrome/browser/resources/inspect/
H A Dinspect.js604 function setModal(dialog) {
605 dialog.deactivatedNodes = Array.prototype.filter.call(
608 return n != dialog && !dialog.contains(n) && n.tabIndex >= 0;
611 dialog.tabIndexes = dialog.deactivatedNodes.map(
614 dialog.deactivatedNodes.forEach(function(n) { n.tabIndex = -1; });
615 window.modal = dialog;
618 function unsetModal(dialog) {
619 for (var i = 0; i < dialog
[all...]
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DChromoting.java114 public void onClick(DialogInterface dialog, int id) {
126 public void onClick(DialogInterface dialog, int id) {
132 public void onCancel(DialogInterface dialog) {
137 AlertDialog dialog = builder.create();
138 dialog.show();
290 public void onCancel(DialogInterface dialog) {
/external/chromium_org/ui/file_manager/file_manager/foreground/css/
H A Ddrive_welcome.css80 .dialog-container:not([drive-welcome='header']) .drive-welcome.header {
139 .dialog-container:not([drive-welcome='page']) .drive-welcome.page {
143 .drive-welcome.page .cr-dialog-close {
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dplatform_verification_dialog.cc51 PlatformVerificationDialog* dialog = new PlatformVerificationDialog( local
56 // Sets up the dialog widget to be shown.
61 dialog, NULL, popup_manager->GetHostView());
/external/chromium_org/chrome/browser/resources/print_preview/previewarea/
H A Dpreview_area.css78 #preview-area .preview-area-open-system-dialog-button-throbber {
/external/chromium_org/chrome/browser/ui/views/
H A Dcrypto_module_password_dialog_view.cc160 CryptoModulePasswordDialogView* dialog = local
162 views::DialogDelegate::CreateDialogWidget(dialog, NULL, parent)->Show();
H A Dsimple_message_box_views.cc116 // TODO(pkotwicz): Exit message loop when the dialog is closed by some other
225 LOG(ERROR) << "Unable to show a dialog outside the UI thread message loop: "
231 SimpleMessageBoxViews* dialog = local
239 CreateBrowserModalDialogViews(dialog, parent)->Show();
241 // NOTE: |dialog| may have been deleted by the time |RunDialogAndGetResult()|
243 return dialog->RunDialogAndGetResult();
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DCertificateViewer.java44 * Show a dialog with the provided certificate information.
92 // Displays a dialog with scrolling for the given view.
94 Dialog dialog = new Dialog(mContext);
95 dialog.setTitle(R.string.certtitle);
98 dialog.addContentView(scrollView,
101 dialog.show();
/external/chromium_org/extensions/renderer/resources/
H A Dweb_view_events.js46 'dialog': {
221 var WARNING_MSG_DIALOG_BLOCKED = '<webview>: %1 %2 dialog was blocked.';
233 'An action has already been taken for this "dialog" event.';
245 var dialog = {
257 webViewEvent.dialog = dialog;
265 // Tell the JavaScript garbage collector to track lifetime of |dialog| and
266 // call back when the dialog object has been collected.
267 MessagingNatives.BindToGC(dialog, function() {
282 // The default action is equivalent to canceling the dialog
[all...]
/external/chromium_org/remoting/host/
H A Dcontinue_window_linux.cc104 void ContinueWindowGtk::OnResponse(GtkDialog* dialog, int response_id) { argument
/external/chromium_org/tools/stats_viewer/
H A Dstats_viewer.cs343 OpenDialog dialog = new OpenDialog();
344 dialog.ShowDialog();
349 bool rv = table.Open(dialog.FileName);
352 MessageBox.Show("Could not open statsfile: " + dialog.FileName);
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DTwoFieldDatePickerDialog.java37 * @param context The context the dialog is to run in.
39 * @param year The initial year of the dialog.
40 * @param weekOfYear The initial week of the dialog.
52 * @param context The context the dialog is to run in.
53 * @param theme the theme to apply to this dialog
55 * @param year The initial year of the dialog.
56 * @param weekOfYear The initial week of the dialog.
85 public void onClick(DialogInterface dialog, int which) { argument
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dgas_serv.c79 wpa_msg(hapd->msg_ctx, MSG_ERROR, "ANQP: Could not create dialog for "
106 wpa_printf(MSG_DEBUG, "ANQP: Could not find dialog for "
987 wpa_printf(MSG_INFO, "ANQP: Could not create dialog "
988 "for " MACSTR " (dialog token %u)",
1037 "GAS: GAS Initial Request from " MACSTR " (dialog token %u) ",
1131 struct gas_dialog_info *dialog; local
1144 dialog = gas_serv_dialog_find(hapd, sa, dialog_token);
1145 if (!dialog) {
1147 "response fragment for " MACSTR " dialog token %u",
1160 frag_len = wpabuf_len(dialog
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dgas_serv.c79 wpa_msg(hapd->msg_ctx, MSG_ERROR, "ANQP: Could not create dialog for "
106 wpa_printf(MSG_DEBUG, "ANQP: Could not find dialog for "
987 wpa_printf(MSG_INFO, "ANQP: Could not create dialog "
988 "for " MACSTR " (dialog token %u)",
1037 "GAS: GAS Initial Request from " MACSTR " (dialog token %u) ",
1131 struct gas_dialog_info *dialog; local
1144 dialog = gas_serv_dialog_find(hapd, sa, dialog_token);
1145 if (!dialog) {
1147 "response fragment for " MACSTR " dialog token %u",
1160 frag_len = wpabuf_len(dialog
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dgas_serv.c79 wpa_msg(hapd->msg_ctx, MSG_ERROR, "ANQP: Could not create dialog for "
106 wpa_printf(MSG_DEBUG, "ANQP: Could not find dialog for "
987 wpa_printf(MSG_INFO, "ANQP: Could not create dialog "
988 "for " MACSTR " (dialog token %u)",
1037 "GAS: GAS Initial Request from " MACSTR " (dialog token %u) ",
1131 struct gas_dialog_info *dialog; local
1144 dialog = gas_serv_dialog_find(hapd, sa, dialog_token);
1145 if (!dialog) {
1147 "response fragment for " MACSTR " dialog token %u",
1160 frag_len = wpabuf_len(dialog
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/css/
H A Dwallpaper_manager.css23 .dialog-topbar #navstrip,
24 .dialog-topbar #window-close-button,
35 .dialog-container {
42 .dialog-topbar {
51 .dialog-topbar .spacer {
119 .dialog-main {
/external/chromium_org/ui/base/win/
H A Dopen_file_name_win.cc16 // Ensures that the Save As dialog is on-screen.
17 UINT_PTR CALLBACK SaveAsDialogHook(HWND dialog, UINT message, argument
23 ::PostMessage(dialog, kPrivateMessage, 0, 0);
27 // The dialog box is the parent of the current handle.
28 HWND real_dialog = ::GetParent(dialog);
45 // Some part of the dialog box is not visible, fix it by moving is to the
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDialog.java52 ShadowDialog dialog = Robolectric.getShadowApplication().getLatestDialog();
53 return dialog == null ? null : dialog.realDialog;

Completed in 1574 milliseconds

1234567891011