HomeSort by relevance Sort by last modified time
    Searched full:dialog (Results 76 - 100 of 3361) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/gtk/
web_contents_modal_dialog_manager_gtk.cc 17 // Web contents modal dialog manager implementation for the GTK port. Unlike the
19 // instead just centers the dialog. It is thus an order of magnitude simpler.
33 virtual void ManageDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
34 DCHECK(g_object_is_floating(GetGtkWidget(dialog)));
35 g_object_ref_sink(GetGtkWidget(dialog));
37 g_signal_connect(GetGtkWidget(dialog), "hierarchy-changed",
39 g_signal_connect(GetGtkWidget(dialog),
45 virtual void ShowDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
46 GtkWidget* widget = GetGtkWidget(dialog);
62 virtual void HideDialog(NativeWebContentsModalDialog dialog) OVERRIDE
    [all...]
chrome_browser_main_extra_parts_gtk.cc 42 GtkWidget* dialog = gtk_message_dialog_new( local
54 gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
59 gtk_window_set_title(GTK_WINDOW(dialog), message.c_str());
61 gtk_dialog_run(GTK_DIALOG(dialog));
62 gtk_widget_destroy(dialog);
69 GtkWidget* dialog = gtk_message_dialog_new( local
77 gtk_window_set_title(GTK_WINDOW(dialog), message);
78 gtk_dialog_run(GTK_DIALOG(dialog));
79 gtk_widget_destroy(dialog);
  /external/chromium_org/chrome/browser/ui/cocoa/extensions/
media_galleries_dialog_cocoa_unittest.mm 77 scoped_ptr<MediaGalleriesDialogCocoa> dialog(
80 EXPECT_EQ(2U, [dialog->checkboxes_ count]);
82 NSButton* checkbox1 = [dialog->checkboxes_ objectAtIndex:0];
85 NSButton* checkbox2 = [dialog->checkboxes_ objectAtIndex:1];
105 scoped_ptr<MediaGalleriesDialogCocoa> dialog(
108 EXPECT_EQ(1U, [dialog->checkboxes_ count]);
110 NSButton* checkbox = [dialog->checkboxes_ objectAtIndex:0];
123 // a gallery that the dialog hasn't seen before.
136 scoped_ptr<MediaGalleriesDialogCocoa> dialog(
140 EXPECT_EQ(0U, [dialog->checkboxes_ count])
    [all...]
  /external/chromium_org/components/web_modal/
web_contents_modal_dialog_manager_unittest.cc 30 virtual void ManageDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
32 virtual void ShowDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
34 virtual void HideDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
36 virtual void CloseDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
37 delegate_->WillClose(dialog);
40 virtual void FocusDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
42 virtual void PulseDialog(NativeWebContentsModalDialog dialog) OVERRIDE {
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
http-auth-challenge.html 4 <p>This test case is to test the behavior of http authentication challenge dialog. This is for <a href="https://bugs.webkit.org/show_bug.cgi?id=80135">https://bugs.webkit.org/show_bug.cgi?id=80135</a></p>
8 <li>Test dialog behavior when press Cancel button</li>
10 <li>Start test case, then press Cancel button when authentication dialog pops up;</li>
12 <li>Test dialog behavior when press OK button</li>
15 <li>Start test case again, then press Ok button without input anything when authentication dialog pops up;</li>
16 <li>When dialog pops up again, enter fake credential and press Ok button: username:"qqqq", password:"qqqq"</li>
17 <li>When dialog pops up agian, enter real credential and press Ok button: username:"aaaa", password:"aaaa"</li>
http-auth-on-200.php 5 echo 'PASS if you did not see an authentication dialog';
  /external/chromium_org/ui/views/window/
dialog_delegate_unittest.cc 82 // Prevent the dialog from closing, for repeated ok and cancel button clicks.
106 TestDialog* dialog() const { return dialog_; } function in class:views::__anon16983::DialogTest
117 DialogClientView* client_view = dialog()->GetDialogClientView();
122 EXPECT_EQ(ui::DIALOG_BUTTON_OK, dialog()->GetDefaultDialogButton());
123 dialog()->PressEnterAndCheckStates(ok_button);
125 // Focus another button in the dialog, it should become the default.
126 LabelButton* button_1 = new LabelButton(dialog(), string16());
130 dialog()->PressEnterAndCheckStates(button_1);
137 dialog()->PressEnterAndCheckStates(ok_button);
139 // Focus yet another button in the dialog, it should become the default
    [all...]
  /packages/apps/Settings/src/com/android/settings/
EditPinPreference.java 19 import android.app.Dialog;
63 Dialog dialog = getDialog(); local
64 return dialog != null && dialog.isShowing();
76 Dialog dialog = getDialog(); local
77 if (dialog == null || !dialog.isShowing()) {
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JsPromptResultReceiver.java 9 * modal prompt dialog to enable the client to handle the dialog in their own way.
11 * client and when the client has handled the dialog, it must either callback with
JsResultReceiver.java 9 * modal dialog (alert, beforeunload or confirm) to enable the client to
10 * handle the dialog in their own way. AwContentsClient will offer an object
12 * the dialog, it must either callback with confirm() or cancel() to allow
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/
ModalDialogTest.java 39 "<html><title>Modal Dialog Test</title><p>Testcase.</p></title></html>");
54 * Verifies modal alert-dialog appearance and that JavaScript execution is
65 assertNotNull("No dialog showing.", jsDialog);
82 assertNotNull("No dialog showing.", jsDialog);
103 assertNotNull("No dialog showing.", jsDialog);
106 assertNotNull("No cancel button in confirm dialog.", buttons[0]);
112 assertNotNull("No OK button in confirm dialog.", buttons[2]);
116 assertTrue("JavaScript execution should continue after closing dialog.",
125 assertNotNull("No dialog showing.", jsDialog);
128 assertTrue("JavaScript execution should continue after closing dialog."
250 final AlertDialog dialog = jsDialog.getDialogForTest(); local
    [all...]
  /external/chromium_org/ui/web_dialogs/
web_dialog_observer.h 18 // Invoked when a web dialog has been shown.
19 // |webui| is the WebUI with which the dialog is associated.
20 // |render_view_host| is the RenderViewHost for the shown dialog.
  /external/chromium_org/ui/webui/resources/css/
dialogs.css 5 .cr-dialog-container {
20 .cr-dialog-frame {
35 .cr-dialog-frame:focus {
54 .cr-dialog-frame.pulse {
61 .shown > .cr-dialog-frame {
67 .cr-dialog-frame {
75 .cr-dialog-shield {
88 .shown > .cr-dialog-shield {
97 .cr-dialog-title {
107 .cr-dialog-text
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/
MinTimeProgressDialog.java 26 * be dismissed before showing. Once visible, the dialog will be visible for at
76 // This covers the case where the dialog was not shown
77 // at all yet OR enough time of the dialog showing
87 * Dismiss the dialog, immediately if necessary.
89 * @param force If true, dismiss the dialog right away.
107 public void onShow(DialogInterface dialog) {
108 // When the dialog is actually shown, start the timer.
119 MinTimeProgressDialog dialog = new MinTimeProgressDialog(context); local
120 dialog.setTitle(title);
121 dialog.setMessage(message)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
repost_form_warning_mac.h 16 // Displays a dialog that warns the user that they are about to resubmit
17 // a form. To show the dialog, call the |Create| method. It will open the
18 // dialog and then delete itself when the user dismisses the dialog.
hung_renderer_controller.h 9 // A controller for the Mac hung renderer dialog window. Only one
13 // The dialog itself displays a list of frozen tabs, all of which
14 // share a render process. Since there can only be a single dialog
16 // tab, the dialog is repurposed to show a warning for the new tab.
37 // The TabContents for which this dialog is open. Should never be
38 // NULL while this dialog is open.
56 // Modifies the dialog to show a warning for the given tab contents.
57 // The dialog will contain a list of all tabs that share a renderer
62 // Notifies the dialog that |contents| is either responsive or closed.
64 // this dialog was created for, this function will close the dialog
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
repost_form_warning_gtk.h 17 // Displays a dialog that warns the user that they are about to resubmit
19 // To display the dialog, allocate this object on the heap. It will open the
20 // dialog from its constructor and then delete itself when the user dismisses
21 // the dialog.
  /external/chromium/testing/gtest/xcode/Config/
TestTarget.xcconfig 5 // is set in the "Based On:" dropdown in the "Target" info dialog.
  /external/chromium_org/chrome/browser/ssl/
ssl_client_certificate_selector.h 24 // Opens a constrained SSL client certificate selection dialog under |parent|,
26 // selection, the dialog will report back to |callback|. |callback| is notified
27 // when the dialog closes in call cases; if the user cancels the dialog, we call
  /external/chromium_org/chrome_frame/test/data/
window_print.html 4 <p>The native print dialog should appear.</p>
  /external/chromium_org/testing/gtest/xcode/Config/
TestTarget.xcconfig 5 // is set in the "Based On:" dropdown in the "Target" info dialog.
  /external/libvpx/libvpx/third_party/googletest/src/xcode/Config/
TestTarget.xcconfig 5 // is set in the "Based On:" dropdown in the "Target" info dialog.
  /external/protobuf/gtest/xcode/Config/
TestTarget.xcconfig 5 // is set in the "Based On:" dropdown in the "Target" info dialog.
  /external/chromium_org/chrome/browser/chromeos/ui/
echo_dialog_view.h 21 // Dialog shown by echoPrivate extension API when getUserConsent function is
23 // being redeemed. The dialog is shown to get an user consent. If the echo
24 // extension is not allowed by policy to redeem offers, the dialog informs user
32 // Initializes dialog layout that will be showed when echo extension is
35 // url. Service name should be underlined in the dialog, and hovering over its
37 // The dialog will have both OK and Cancel buttons.
40 // Initializes dialog layout that will be shown when echo extension is not
41 // allowed to redeem offers. The dialog will be showing a message that the
43 // The dialog will have only Cancel button.
46 // Shows the dialog
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
hung_renderer_controller.h 8 // A controller for the Mac hung renderer dialog window. Only one
12 // The dialog itself displays a list of frozen tabs, all of which
13 // share a render process. Since there can only be a single dialog
15 // tab, the dialog is repurposed to show a warning for the new tab.
40 // The WebContents for which this dialog is open. Should never be
41 // NULL while this dialog is open.
62 // Modifies the dialog to show a warning for the given tab contents.
63 // The dialog will contain a list of all tabs that share a renderer
68 // Notifies the dialog that |contents| is either responsive or closed.
70 // this dialog was created for, this function will close the dialog
    [all...]

Completed in 931 milliseconds

1 2 34 5 6 7 8 91011>>