Index: components/password_manager/core/browser/password_reuse_detection_manager.h |
diff --git a/components/password_manager/core/browser/password_reuse_detection_manager.h b/components/password_manager/core/browser/password_reuse_detection_manager.h |
index 52437feac4159587f0ad97ab861d8493e74f9345..eaf9384fd9931ac1f800539ca9eb8ad683e6a9a3 100644 |
--- a/components/password_manager/core/browser/password_reuse_detection_manager.h |
+++ b/components/password_manager/core/browser/password_reuse_detection_manager.h |
@@ -9,10 +9,6 @@ |
#include "base/strings/string16.h" |
#include "components/password_manager/core/browser/password_reuse_detector_consumer.h" |
#include "url/gurl.h" |
- |
-namespace safe_browsing { |
-class PasswordProtectionService; |
-} |
namespace password_manager { |
@@ -26,11 +22,6 @@ |
explicit PasswordReuseDetectionManager(PasswordManagerClient* client); |
~PasswordReuseDetectionManager() override; |
-#if defined(SAFE_BROWSING_DB_LOCAL) || defined(SAFE_BROWSING_DB_REMOTE) |
- void SetPasswordProtectionService( |
- base::WeakPtr<safe_browsing::PasswordProtectionService> pp_service); |
-#endif |
- |
void DidNavigateMainFrame(const GURL& main_frame_url); |
void OnKeyPressed(const base::string16& text); |
@@ -42,10 +33,6 @@ |
private: |
PasswordManagerClient* client_; |
-#if defined(SAFE_BROWSING_DB_LOCAL) || defined(SAFE_BROWSING_DB_REMOTE) |
- base::WeakPtr<safe_browsing::PasswordProtectionService> |
- password_protection_service_; |
-#endif |
base::string16 input_characters_; |
GURL main_frame_url_; |