#ifndef CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_SAD_TAB_VIEW_H_
#define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_SAD_TAB_VIEW_H_
#include "base/mac/scoped_nsobject.h"
#include "ui/base/cocoa/base_view.h"
#import <Cocoa/Cocoa.h>
@class SadTabController;
@class HyperlinkTextView;
@interface SadTabView : BaseView<NSTextViewDelegate> {
@private
IBOutlet NSImageView* image_;
base::scoped_nsobject<NSTextField> title_;
base::scoped_nsobject<NSTextField> message_;
base::scoped_nsobject<HyperlinkTextView> help_;
base::scoped_nsobject<NSColor> backgroundColor_;
NSSize messageSize_;
IBOutlet SadTabController* controller_;
}
- (void)removeHelpText;
- (void)initializeHelpText;
@end
#endif