| Index: chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h
|
| diff --git a/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h b/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h
|
| index d1b6007588e75a9775b9e073b673069b239dd6ec..b36f07ead06f96a8ff262181c49b8da729007976 100644
|
| --- a/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h
|
| +++ b/chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sheet.h
|
| @@ -7,14 +7,14 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| +#import "base/mac/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_sheet.h"
|
| -#import "base/memory/scoped_nsobject.h"
|
|
|
| // Represents a custom sheet. The sheet's window is shown without using the
|
| // system |beginSheet:...| API.
|
| @interface CustomConstrainedWindowSheet : NSObject<ConstrainedWindowSheet> {
|
| @private
|
| - scoped_nsobject<NSWindow> customWindow_;
|
| + base::scoped_nsobject<NSWindow> customWindow_;
|
| }
|
|
|
| - (id)initWithCustomWindow:(NSWindow*)customWindow;
|
|
|