| 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|.
|
|
|