| Index: chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h b/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
|
| index 55684bae3fbbc038279967cb551cba721e637188..115cb2f43c869c64fd9f8bdeaec86d958743db18 100644
|
| --- a/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
|
| +++ b/chrome/browser/ui/cocoa/profiles/avatar_base_controller.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #import <AppKit/AppKit.h>
|
|
|
| +#include <memory>
|
| +
|
| #import "base/mac/scoped_nsobject.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/ui/browser_window.h"
|
| #import "chrome/browser/ui/cocoa/has_weak_browser_pointer.h"
|
| #include "components/signin/core/browser/signin_header_helper.h"
|
| @@ -32,7 +33,7 @@ class ProfileAttributesUpdateObserver;
|
| BaseBubbleController* menuController_;
|
|
|
| // Observer that listens for updates to the ProfileAttributesStorage.
|
| - scoped_ptr<ProfileAttributesUpdateObserver> profileAttributesObserver_;
|
| + std::unique_ptr<ProfileAttributesUpdateObserver> profileAttributesObserver_;
|
| }
|
|
|
| // The avatar button view.
|
|
|