OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
Ilya Sherman
2014/05/09 21:51:28
nit: 2014
Patrick Dubroy
2014/05/12 14:13:39
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_COCOA_H_ | |
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_COCOA_H_ | |
7 | |
8 #import <Cocoa/Cocoa.h> | |
9 | |
10 #import "ui/base/cocoa/base_view.h" | |
Ilya Sherman
2014/05/09 21:51:28
nit: This is probably not needed -- right?
Patrick Dubroy
2014/05/12 14:13:39
Done.
| |
11 #include "chrome/browser/ui/autofill/password_generation_popup_controller.h" | |
12 #import "chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h" | |
Ilya Sherman
2014/05/09 21:51:28
nit: Should this be base_view?
Patrick Dubroy
2014/05/12 14:13:39
Yep, fixed.
| |
13 #import "chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h " | |
Ilya Sherman
2014/05/09 21:51:28
Am I misreading this, or is this header attempting
Patrick Dubroy
2014/05/12 14:13:39
Yes, not sure what happened there! Fixed.
| |
14 | |
15 namespace autofill { | |
16 class AutofillPopupController; | |
17 } // namespace autofill | |
18 | |
19 // Draws the native password generation popup view on Mac. | |
20 @interface PasswordGenerationPopupViewCocoa : AutofillPopupBaseViewCocoa { | |
21 @private | |
22 // The cross-platform controller for this view. | |
23 __weak autofill::PasswordGenerationPopupController* controller_; | |
24 } | |
Ilya Sherman
2014/05/09 21:51:28
nit: Please leave a blank line after this one.
Patrick Dubroy
2014/05/12 14:13:39
Done.
| |
25 // Designated initializer. | |
26 - (id)initWithController: | |
27 (autofill::PasswordGenerationPopupController*)controller | |
28 frame:(NSRect)frame; | |
29 | |
30 - (void)controllerDestroyed; | |
31 | |
32 @end | |
33 | |
34 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_COCOA _H_ | |
OLD | NEW |