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

Unified Diff: components/password_manager/core/browser/stub_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: components/password_manager/core/browser/stub_password_manager_client.h
diff --git a/components/password_manager/core/browser/stub_password_manager_client.h b/components/password_manager/core/browser/stub_password_manager_client.h
index df98851ecb53c41c71064093cd75319d8acfe696..cf993a82af41c62e3258faa82bf67d41df8da48d 100644
--- a/components/password_manager/core/browser/stub_password_manager_client.h
+++ b/components/password_manager/core/browser/stub_password_manager_client.h
@@ -31,6 +31,13 @@ class StubPasswordManagerClient : public PasswordManagerClient {
virtual PrefService* GetPrefs() OVERRIDE;
virtual PasswordStore* GetPasswordStore() OVERRIDE;
virtual PasswordManagerDriver* GetDriver() OVERRIDE;
+ virtual void OnNotifyFailedSignIn(int request_id,
+ const CredentialInfo&) OVERRIDE;
+ virtual void OnNotifySignedIn(int request_id, const CredentialInfo&) OVERRIDE;
+ virtual void OnNotifySignedOut(int request_id) OVERRIDE;
+ virtual void OnRequestCredential(int request_id,
+ bool zero_click_only,
+ std::vector<GURL> federations) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(StubPasswordManagerClient);

Powered by Google App Engine
This is Rietveld 408576698