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

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

Issue 1907813002: Make the URLs in the password exceptions list clickable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-implicit-update.gitbr
Patch Set: feedback Created 4 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_impl.h
diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
index d7b05fa14c7e524a56a8de081d67a7a8c8bf20e7..55b87f518b98598be7555f32ac2c31cb8d271880 100644
--- a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate_impl.h
@@ -43,7 +43,8 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
const std::vector<api::passwords_private::PasswordUiEntry>*
GetSavedPasswordsList() const override;
void SendPasswordExceptionsList() override;
- const std::vector<std::string>* GetPasswordExceptionsList() const override;
+ const std::vector<api::passwords_private::ExceptionPair>*
+ GetPasswordExceptionsList() const override;
void RemoveSavedPassword(
const std::string& origin_url, const std::string& username) override;
void RemovePasswordException(const std::string& exception_url) override;
@@ -98,7 +99,7 @@ class PasswordsPrivateDelegateImpl : public PasswordsPrivateDelegate,
// observers are added, this delegate can send the current lists without
// having to request them from |password_manager_presenter_| again.
std::vector<api::passwords_private::PasswordUiEntry> current_entries_;
- std::vector<std::string> current_exceptions_;
+ std::vector<api::passwords_private::ExceptionPair> current_exceptions_;
// Whether SetPasswordList and SetPasswordExceptionList have been called, and
// whether this class has been initialized, meaning both have been called.

Powered by Google App Engine
This is Rietveld 408576698