| Index: chrome/browser/ui/cocoa/infobars/translate_infobar_base.h
|
| diff --git a/chrome/browser/ui/cocoa/infobars/translate_infobar_base.h b/chrome/browser/ui/cocoa/infobars/translate_infobar_base.h
|
| index 992aedb7f132e73a3acfd9045d2fdac7a9d7d3d7..4752e8348d988cd763bd904037ed8a3e2df083c6 100644
|
| --- a/chrome/browser/ui/cocoa/infobars/translate_infobar_base.h
|
| +++ b/chrome/browser/ui/cocoa/infobars/translate_infobar_base.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| +#include <memory>
|
| +
|
| #import "base/mac/scoped_nsobject.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #import "chrome/browser/ui/cocoa/infobars/infobar_controller.h"
|
| #include "components/translate/core/browser/options_menu_model.h"
|
| #include "components/translate/core/browser/translate_infobar_delegate.h"
|
| @@ -42,7 +43,7 @@
|
| // Space between controls in pixels - read from the NIB.
|
| CGFloat spaceBetweenControls_;
|
|
|
| - scoped_ptr<translate::OptionsMenuModel> optionsMenuModel_;
|
| + std::unique_ptr<translate::OptionsMenuModel> optionsMenuModel_;
|
| }
|
|
|
| // Returns the delegate as a TranslateInfoBarDelegate. The return
|
|
|