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

Unified Diff: chrome/browser/extensions/api/passwords_private/passwords_private_api.h

Issue 2468763002: MD Settings: fix chrome.passwordsPrivate empty list bug (Closed)
Patch Set: fix ups Created 4 years, 1 month 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/extensions/api/passwords_private/passwords_private_api.h
diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_api.h b/chrome/browser/extensions/api/passwords_private/passwords_private_api.h
index b8789f5aca453e4dffeb4dffbf777d2c7f60f9e9..196522b4472d7f1476663b67a1c0f04f2aaca734 100644
--- a/chrome/browser/extensions/api/passwords_private/passwords_private_api.h
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_api.h
@@ -79,6 +79,9 @@ class PasswordsPrivateGetSavedPasswordListFunction
ResponseAction Run() override;
private:
+ void GetList();
+ void GotList(const PasswordsPrivateDelegate::UiEntries* entries);
+
DISALLOW_COPY_AND_ASSIGN(PasswordsPrivateGetSavedPasswordListFunction);
};
@@ -96,6 +99,9 @@ class PasswordsPrivateGetPasswordExceptionListFunction
ResponseAction Run() override;
private:
+ void GetList();
+ void GotList(const PasswordsPrivateDelegate::ExceptionPairs* pairs);
+
DISALLOW_COPY_AND_ASSIGN(PasswordsPrivateGetPasswordExceptionListFunction);
};

Powered by Google App Engine
This is Rietveld 408576698