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

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

Issue 496703002: Credential Manager: Stub out the browser-side IPC handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test. Created 6 years, 4 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
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 4fbed6456314c0040b13d594b7530235b68bdb79..c4fa486ce4b6a7e4d61a459674241df4e8286bf2 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client.h
+++ b/chrome/browser/password_manager/chrome_password_manager_client.h
@@ -25,6 +25,7 @@ class WebContents;
}
namespace password_manager {
+struct CredentialInfo;
class PasswordGenerationManager;
class PasswordManager;
}
@@ -65,6 +66,16 @@ 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,
+ std::vector<GURL> federations) OVERRIDE;
// Hides any visible generation UI.
void HidePasswordGenerationPopup();

Powered by Google App Engine
This is Rietveld 408576698