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

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

Issue 1871713002: Convert //chrome/browser/extensions from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and fix header 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_event_router.h
diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_event_router.h b/chrome/browser/extensions/api/passwords_private/passwords_private_event_router.h
index 4923470ad77bf16d0d05c66cc454132f820758e0..a91216eeec71786d761ce7decafa24815b40037d 100644
--- a/chrome/browser/extensions/api/passwords_private/passwords_private_event_router.h
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_event_router.h
@@ -64,8 +64,8 @@ class PasswordsPrivateEventRouter :
// Cached parameters which are saved so that when new listeners are added, the
// most up-to-date lists can be sent to them immediately.
- scoped_ptr<base::ListValue> cached_saved_password_parameters_;
- scoped_ptr<base::ListValue> cached_password_exception_parameters_;
+ std::unique_ptr<base::ListValue> cached_saved_password_parameters_;
+ std::unique_ptr<base::ListValue> cached_password_exception_parameters_;
// Whether this class is currently listening for changes to password changes.
bool listening_;

Powered by Google App Engine
This is Rietveld 408576698