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

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

Issue 1833773002: [Extensions] Convert APIs to use movable types [8] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 37017240c319f87b39dd4f46d505e9375d4e99a0..df18ead3a568151a1cfd4c5bfa6e364d60e0e7d7 100644
--- a/chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h
@@ -44,8 +44,8 @@ class PasswordsPrivateDelegate : public KeyedService {
// PasswordsPrivateDelegate::AddObserver().
class Observer {
public:
- virtual void OnSavedPasswordsListChanged(const std::vector<linked_ptr<
- api::passwords_private::PasswordUiEntry>>& entries) {}
+ virtual void OnSavedPasswordsListChanged(
+ const std::vector<api::passwords_private::PasswordUiEntry>& entries) {}
virtual void OnPasswordExceptionsListChanged(
const std::vector<std::string>& exceptions) {}
virtual void OnPlaintextPasswordFetched(

Powered by Google App Engine
This is Rietveld 408576698