Index: chrome/browser/password_manager/chrome_password_manager_client.cc |
diff --git a/chrome/browser/password_manager/chrome_password_manager_client.cc b/chrome/browser/password_manager/chrome_password_manager_client.cc |
index 31329aafa90052d833a1744f837732ed210a56fd..28cfee4d93d5c21ef1aa7660f7f65e5bed8494db 100644 |
--- a/chrome/browser/password_manager/chrome_password_manager_client.cc |
+++ b/chrome/browser/password_manager/chrome_password_manager_client.cc |
@@ -272,8 +272,6 @@ void ChromePasswordManagerClient::ShowPasswordGenerationPopup( |
const autofill::PasswordForm& form) { |
// TODO(gcasto): Validate data in PasswordForm. |
- // Only implemented for Aura right now. |
-#if defined(USE_AURA) |
gfx::RectF element_bounds_in_screen_space = GetBoundsInScreenSpace(bounds); |
popup_controller_ = |
@@ -287,14 +285,11 @@ void ChromePasswordManagerClient::ShowPasswordGenerationPopup( |
web_contents(), |
web_contents()->GetNativeView()); |
popup_controller_->Show(true /* display_password */); |
-#endif // #if defined(USE_AURA) |
} |
void ChromePasswordManagerClient::ShowPasswordEditingPopup( |
const gfx::RectF& bounds, |
const autofill::PasswordForm& form) { |
- // Only implemented for Aura right now. |
-#if defined(USE_AURA) |
gfx::RectF element_bounds_in_screen_space = GetBoundsInScreenSpace(bounds); |
popup_controller_ = |
@@ -308,7 +303,6 @@ void ChromePasswordManagerClient::ShowPasswordEditingPopup( |
web_contents(), |
web_contents()->GetNativeView()); |
popup_controller_->Show(false /* display_password */); |
-#endif // #if defined(USE_AURA) |
} |
void ChromePasswordManagerClient::CommitFillPasswordForm( |