| Index: chrome/browser/ui/cocoa/tabs/alert_indicator_button_cocoa.h
|
| diff --git a/chrome/browser/ui/cocoa/tabs/alert_indicator_button_cocoa.h b/chrome/browser/ui/cocoa/tabs/alert_indicator_button_cocoa.h
|
| index fe0624676fc3fccb3070c9a0da433fb579133974..c17583ed2b1a77431a9a60251a3ac6d65e3adb0e 100644
|
| --- a/chrome/browser/ui/cocoa/tabs/alert_indicator_button_cocoa.h
|
| +++ b/chrome/browser/ui/cocoa/tabs/alert_indicator_button_cocoa.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_BROWSER_UI_COCOA_TABS_ALERT_INDICATOR_BUTTON_COCOA_H_
|
| #define CHROME_BROWSER_UI_COCOA_TABS_ALERT_INDICATOR_BUTTON_COCOA_H_
|
|
|
| +#include <memory>
|
| +
|
| #import "base/mac/scoped_nsobject.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/ui/tabs/tab_utils.h"
|
| #import "ui/base/cocoa/hover_button.h"
|
|
|
| @@ -36,8 +37,8 @@ class AnimationDelegate;
|
|
|
| // Alert indicator fade-in/out animation (i.e., only on show/hide, not a
|
| // continuous animation).
|
| - scoped_ptr<gfx::AnimationDelegate> fadeAnimationDelegate_;
|
| - scoped_ptr<gfx::Animation> fadeAnimation_;
|
| + std::unique_ptr<gfx::AnimationDelegate> fadeAnimationDelegate_;
|
| + std::unique_ptr<gfx::Animation> fadeAnimation_;
|
| TabAlertState showingAlertState_;
|
|
|
| // Target and action invoked whenever a fade-in/out animation completes. This
|
|
|