Chromium Code Reviews| Index: chrome/browser/ui/cocoa/browser/password_generation_bubble_controller.h |
| diff --git a/chrome/browser/ui/cocoa/browser/password_generation_bubble_controller.h b/chrome/browser/ui/cocoa/browser/password_generation_bubble_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6285e5b6fe9f784aa3e82998f23a0102a4f675c1 |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/browser/password_generation_bubble_controller.h |
| @@ -0,0 +1,57 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ |
| +#define CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ |
| + |
| +#import <Cocoa/Cocoa.h> |
| + |
| +#import "chrome/browser/ui/cocoa/base_bubble_controller.h" |
| +#import "chrome/browser/ui/cocoa/styled_text_field.h" |
| +#include "content/public/common/password_form.h" |
| + |
| +namespace autofill { |
| +class PasswordGenerator; |
| +} |
| + |
| +namespace content { |
| +class RenderViewHost; |
| +} |
| + |
| +class Browser; |
| +class PasswordManager; |
| +@class PasswordGenerationBubbleController; |
| + |
| +// Customized text field that is used to display the regenerate icon. |
| +@interface PasswordGenerationTextField : StyledTextField { |
| +} |
| + |
| +- (id)initWithFrame:(NSRect)frame |
| + withController:(PasswordGenerationBubbleController*)controller |
| + normalImage:(NSImage*)normalImage |
| + hoverImage:(NSImage*)hoverImage; |
| +@end |
| + |
| +@interface PasswordGenerationBubbleController : BaseBubbleController { |
| + @private |
| + content::RenderViewHost* renderViewHost_; |
| + PasswordManager* passwordManager_; |
| + autofill::PasswordGenerator* passwordGenerator_; |
| + content::PasswordForm form_; |
| + |
| + PasswordGenerationTextField* textField_; // weak |
|
Scott Hess - ex-Googler
2012/11/17 01:22:41
I think these are all indented one char too far.
Garrett Casto
2012/11/19 22:17:42
Done.
|
| +} |
| + |
| +- (id)initWithBrowser:(Browser*)parentBrowser |
| + anchoredAt:(NSPoint)point |
| + renderViewHost:(content::RenderViewHost*)renderViewHost |
| + passwordManager:(PasswordManager*)passwordManager |
| + usingGenerator:(autofill::PasswordGenerator*)passwordGenerator |
| + forForm:(const content::PasswordForm&)form; |
| +- (void) performLayout; |
| +- (IBAction) fillPassword:(id)sender; |
| +- (void) regeneratePassword; |
|
Scott Hess - ex-Googler
2012/11/17 01:22:41
No space right of ) for these three.
Garrett Casto
2012/11/19 22:17:42
Done.
|
| +@end |
| + |
| +#endif // CHROME_BROWSER_UI_COCOA_BROWSER_PASSWORD_GENERATION_BUBBLE_CONTROLLER_H_ |