| Index: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
|
| index 27113dfc9c97e157c712af915d19a0cc16bbfc07..9fcd26207facef289ace9810999e962cf453b532 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.h
|
| @@ -6,7 +6,6 @@
|
| #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_DIALOG_COCOA_H_
|
|
|
| #include "base/mac/scoped_nsobject.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "chrome/browser/ui/autofill/autofill_dialog_types.h"
|
| #include "chrome/browser/ui/autofill/autofill_dialog_view.h"
|
| @@ -65,7 +64,7 @@ class AutofillDialogCocoa : public AutofillDialogView,
|
| // Closes the sheet and ends the modal loop. Triggers cleanup sequence.
|
| void CloseNow();
|
|
|
| - scoped_ptr<ConstrainedWindowMac> constrained_window_;
|
| + std::unique_ptr<ConstrainedWindowMac> constrained_window_;
|
| base::scoped_nsobject<AutofillDialogWindowController> sheet_delegate_;
|
|
|
| // The delegate |this| queries for logic and state.
|
|
|