Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Side by Side Diff: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h

Issue 267183002: Password manager: Implement password generation UI for Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
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 #include "chrome/browser/ui/autofill/password_generation_popup_controller.h"
11 #import "chrome/browser/ui/cocoa/autofill/autofill_popup_base_view_cocoa.h"
12
13 namespace autofill {
14 class AutofillPopupController;
15 } // namespace autofill
16
17 // Draws the native password generation popup view on Mac.
18 @interface PasswordGenerationPopupViewCocoa : AutofillPopupBaseViewCocoa {
19 @private
20 // The cross-platform controller for this view.
21 __weak autofill::PasswordGenerationPopupController* controller_;
22 }
23
24 // Designated initializer.
25 - (id)initWithController:
26 (autofill::PasswordGenerationPopupController*)controller
27 frame:(NSRect)frame;
28
29 // Informs the view that its controller has been (or will imminently be)
30 // destroyed.
31 - (void)controllerDestroyed;
32
33 @end
34
35 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_PASSWORD_GENERATION_POPUP_VIEW_COCOA _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698