diff --git a/mozilla/extensions/wallet/src/singsign.cpp b/mozilla/extensions/wallet/src/singsign.cpp index 2a7bbbb874c..fb709786dce 100644 --- a/mozilla/extensions/wallet/src/singsign.cpp +++ b/mozilla/extensions/wallet/src/singsign.cpp @@ -205,13 +205,7 @@ si_PromptPassword (char *szMessage) { } if (dialog) { const nsString message = szMessage; -#ifdef xxx dialog->PromptPassword(message, password, &retval); -#else - /* temporary until PromptPassword is implemented */ - nsString username; - dialog->PromptUserAndPassword(message, username, password, &retval); -#endif } nsServiceManager::ReleaseService(kNetSupportDialogCID, dialog); if (retval) { @@ -234,13 +228,7 @@ si_Prompt(char *szMessage, char* szDefaultUsername) { } if (dialog) { const nsString message = szMessage; -#ifdef xxx dialog->Prompt(message, defaultUsername, username, &retval); -#else - /* temporary until Prompt is implemented */ - nsString password; - dialog->PromptUserAndPassword(message, username, password, &retval); -#endif } nsServiceManager::ReleaseService(kNetSupportDialogCID, dialog); if (retval) {