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

Unified Diff: components/password_manager/content/browser/credential_manager_dispatcher.h

Issue 902843002: Credential Manager: Wire `notifySignedOut` to the PasswordStore. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/content/browser/credential_manager_dispatcher.h
diff --git a/components/password_manager/content/browser/credential_manager_dispatcher.h b/components/password_manager/content/browser/credential_manager_dispatcher.h
index fdcfc81e339913aa472e33f71da412102333502d..9dddc8f12f922540d79f6ed9c236369ca85c6ac8 100644
--- a/components/password_manager/content/browser/credential_manager_dispatcher.h
+++ b/components/password_manager/content/browser/credential_manager_dispatcher.h
@@ -72,6 +72,7 @@ class CredentialManagerDispatcher : public content::WebContentsObserver {
private:
class PendingRequestTask;
+ class PendingSignedOutTask;
PasswordStore* GetPasswordStore();
@@ -95,6 +96,7 @@ class CredentialManagerDispatcher : public content::WebContentsObserver {
// they can properly respond to the request once the PasswordStore gives
// us data.
scoped_ptr<PendingRequestTask> pending_request_;
+ scoped_ptr<PendingSignedOutTask> pending_sign_out_;
DISALLOW_COPY_AND_ASSIGN(CredentialManagerDispatcher);
};

Powered by Google App Engine
This is Rietveld 408576698