Index: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h |
diff --git a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h |
index e475161c8796473ab29d438de8821feaac08d736..f1e8d21b79f0e5af42e1d6a279d36cbef9eef455 100644 |
--- a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h |
+++ b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h |
@@ -24,7 +24,8 @@ class AutofillPopupController; |
__weak autofill::PasswordGenerationPopupController* controller_; |
__weak NSTextField* passwordField_; |
- __weak NSTextField* passwordSubtextField_; |
+ __weak NSTextField* passwordTitleField_; |
+ __weak NSImage* keyIcon_; |
__weak HyperlinkTextView* helpTextView_; |
} |
@@ -33,10 +34,15 @@ class AutofillPopupController; |
(autofill::PasswordGenerationPopupController*)controller |
frame:(NSRect)frame; |
+- (BOOL)isPointInPasswordBounds:(CGPoint)point; |
Ilya Sherman
2014/08/19 22:32:17
nit: Can the |point| be passed as an NSPoint rathe
Ilya Sherman
2014/08/19 22:32:17
Please add documentation for this method.
dconnelly
2014/08/20 17:07:05
Done.
dconnelly
2014/08/20 17:07:05
Done.
|
+ |
// Informs the view that its controller has been (or will imminently be) |
// destroyed. |
- (void)controllerDestroyed; |
+// The preferred size for the popup. |
+- (NSSize)preferredSize; |
+ |
@end |
#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_COCOA_H_ |