#ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_
#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_
#import <Cocoa/Cocoa.h>
#import "ui/base/cocoa/base_view.h"
namespace autofill {
class AutofillPopupController;
}
@interface AutofillPopupViewCocoa : BaseView {
@private
__weak autofill::AutofillPopupController* controller_;
}
- (id)initWithController:(autofill::AutofillPopupController*)controller
frame:(NSRect)frame;
- (void)controllerDestroyed;
@end
#endif