| Index: chrome/browser/ui/cocoa/bug_report_window_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/bug_report_window_controller.h b/chrome/browser/ui/cocoa/bug_report_window_controller.h
|
| index 15aa707ecf23b3f6379e69ebcf32cb3034e9c3a8..c0c9384b7fe07b46d82cc60bd6c57f87d180db26 100644
|
| --- a/chrome/browser/ui/cocoa/bug_report_window_controller.h
|
| +++ b/chrome/browser/ui/cocoa/bug_report_window_controller.h
|
| @@ -69,6 +69,15 @@ class TabContents;
|
| NSDictionary* bugTypeDictionary_; // Strong
|
| }
|
|
|
| +// Properties for bindings.
|
| +@property(nonatomic, copy) NSString* bugDescription;
|
| +@property(nonatomic) NSUInteger bugTypeIndex;
|
| +@property(nonatomic, copy) NSString* pageTitle;
|
| +@property(nonatomic, copy) NSString* pageURL;
|
| +@property(nonatomic) BOOL sendScreenshot;
|
| +@property(nonatomic) BOOL disableScreenshotCheckbox;
|
| +@property(nonatomic, readonly) NSArray* bugTypeList;
|
| +
|
| // Initialize with the contents of the tab to be reported as buggy / wrong.
|
| // If dialog is called without an open window, currentTab may be null; in
|
| // that case, a dialog is opened with options for reporting a bugs not
|
| @@ -98,15 +107,6 @@ class TabContents;
|
| - (BOOL)control:(NSControl*)control textView:(NSTextView*)textView
|
| doCommandBySelector:(SEL)commandSelector;
|
|
|
| -// Properties for bindings.
|
| -@property (nonatomic, copy) NSString* bugDescription;
|
| -@property (nonatomic) NSUInteger bugTypeIndex;
|
| -@property (nonatomic, copy) NSString* pageTitle;
|
| -@property (nonatomic, copy) NSString* pageURL;
|
| -@property (nonatomic) BOOL sendScreenshot;
|
| -@property (nonatomic) BOOL disableScreenshotCheckbox;
|
| -@property (nonatomic, readonly) NSArray* bugTypeList;
|
| -
|
| @end
|
|
|
| #endif // CHROME_BROWSER_UI_COCOA_BUG_REPORT_WINDOW_CONTROLLER_H_
|
|
|