#ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_OVERLAY_CONTROLLER_H_
#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_OVERLAY_CONTROLLER_H_
#import <Cocoa/Cocoa.h>
#include "base/mac/scoped_nsobject.h"
#include "base/memory/scoped_ptr.h"
#import "chrome/browser/ui/cocoa/autofill/autofill_layout.h"
namespace autofill {
class AutofillDialogViewDelegate;
struct DialogOverlayState;
}
@class AutofillMessageView;
@interface AutofillOverlayController : NSViewController<AutofillLayout> {
@private
base::scoped_nsobject<NSImageView> imageView_;
base::scoped_nsobject<AutofillMessageView> messageView_;
autofill::AutofillDialogViewDelegate* delegate_;
}
- (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate;
- (void)updateState;
- (CGFloat)heightForWidth:(int)width;
@end
#endif