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

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

Issue 2845543002: Show human readable origin for Android apps (Closed)
Patch Set: Created 3 years, 8 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/extensions/api/passwords_private/passwords_private_delegate.h
diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h
index 0cb1e04da72210b8cff4a267dec422de0d3fe8e0..15cfac7d522c5e156025b2f1773eaed5b998e6e8 100644
--- a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h
@@ -44,10 +44,11 @@ class PasswordsPrivateDelegate : public KeyedService {
virtual void SendPasswordExceptionsList() = 0;
// Gets the password exceptions list.
- using ExceptionPairs = std::vector<api::passwords_private::ExceptionPair>;
- using ExceptionPairsCallback = base::Callback<void(const ExceptionPairs&)>;
+ using ExceptionEntries = std::vector<api::passwords_private::ExceptionEntry>;
+ using ExceptionEntriesCallback =
+ base::Callback<void(const ExceptionEntries&)>;
virtual void GetPasswordExceptionsList(
- const ExceptionPairsCallback& callback) = 0;
+ const ExceptionEntriesCallback& callback) = 0;
// Removes the saved password entry corresponding to |origin_url| and
// |username|.

Powered by Google App Engine
This is Rietveld 408576698