Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2000)

Unified Diff: chrome/browser/password_manager/chrome_password_manager_client.h

Issue 615483002: Credential Manager: Extract browser-side IPC to a stand-alone dispatcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/chrome_password_manager_client.h
diff --git a/chrome/browser/password_manager/chrome_password_manager_client.h b/chrome/browser/password_manager/chrome_password_manager_client.h
index fb83b535130b4aec38cc303411429b51b80fa47d..9ce89a8a8e568911bf7bc8ef0dc1e48364be63cf 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client.h
+++ b/chrome/browser/password_manager/chrome_password_manager_client.h
@@ -7,6 +7,7 @@
#include "base/basictypes.h"
#include "base/compiler_specific.h"
+#include "components/password_manager/content/browser/content_credential_manager_dispatcher.h"
#include "components/password_manager/content/browser/content_password_manager_driver.h"
#include "components/password_manager/core/browser/password_manager_client.h"
#include "content/public/browser/web_contents_observer.h"
@@ -66,17 +67,6 @@ class ChromePasswordManagerClient
virtual void OnLogRouterAvailabilityChanged(bool router_can_be_used) OVERRIDE;
virtual void LogSavePasswordProgress(const std::string& text) OVERRIDE;
virtual bool IsLoggingActive() const OVERRIDE;
- virtual void OnNotifyFailedSignIn(
- int request_id,
- const password_manager::CredentialInfo&) OVERRIDE;
- virtual void OnNotifySignedIn(
- int request_id,
- const password_manager::CredentialInfo&) OVERRIDE;
- virtual void OnNotifySignedOut(int request_id) OVERRIDE;
- virtual void OnRequestCredential(
- int request_id,
- bool zero_click_only,
- const std::vector<GURL>& federations) OVERRIDE;
// Hides any visible generation UI.
void HidePasswordGenerationPopup();
@@ -161,6 +151,9 @@ class ChromePasswordManagerClient
password_manager::ContentPasswordManagerDriver driver_;
+ password_manager::ContentCredentialManagerDispatcher
+ credential_manager_dispatcher_;
+
// Observer for password generation popup.
autofill::PasswordGenerationPopupObserver* observer_;
« no previous file with comments | « no previous file | chrome/browser/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698