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

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: git cl format + compile + const ref + bool rename 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/passwords_private/passwords_private_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..6296e8bbe2ba6d3729277555bd09db075e249716 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);
};
« no previous file with comments | « no previous file | chrome/browser/extensions/api/passwords_private/passwords_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698