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

Unified Diff: chrome/browser/ui/cocoa/passwords/account_avatar_fetcher_manager.h

Issue 2606293002: Remove ScopedVector from chrome/browser/ui. (Closed)
Patch Set: nits Created 3 years, 11 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/ui/cocoa/passwords/account_avatar_fetcher_manager.h
diff --git a/chrome/browser/ui/cocoa/passwords/account_avatar_fetcher_manager.h b/chrome/browser/ui/cocoa/passwords/account_avatar_fetcher_manager.h
index bb4f22db67c0e7cbb5aa459950b0309758caa142..1d2596616b896ffc56bf04b88ae1d176c49f49fe 100644
--- a/chrome/browser/ui/cocoa/passwords/account_avatar_fetcher_manager.h
+++ b/chrome/browser/ui/cocoa/passwords/account_avatar_fetcher_manager.h
@@ -8,7 +8,6 @@
#include <Cocoa/Cocoa.h>
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_vector.h"
#include "net/url_request/url_request_context_getter.h"
class AccountAvatarFetcherBridge;
@@ -17,7 +16,7 @@ class GURL;
// Handles retrieving avatar images for credential items.
@interface AccountAvatarFetcherManager : NSObject {
- ScopedVector<AccountAvatarFetcherBridge> bridges_;
+ std::vector<std::unique_ptr<AccountAvatarFetcherBridge>> bridges_;
scoped_refptr<net::URLRequestContextGetter> requestContext_;
}

Powered by Google App Engine
This is Rietveld 408576698