| 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_;
|
| }
|
|
|
|
|