Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / autofill / autofill_popup_view_cocoa.h
blobb140d054712f30bb79aaa1c52d17ce612e030ab5
1 // Copyright (c) 2012 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.
5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_
6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_
8 #import <Cocoa/Cocoa.h>
10 #import "chrome/browser/ui/cocoa/autofill/autofill_popup_base_view_cocoa.h"
12 namespace autofill {
13 class AutofillPopupController;
14 } // namespace autofill
16 // Draws the native Autofill popup view on Mac.
17 @interface AutofillPopupViewCocoa : AutofillPopupBaseViewCocoa {
18 @private
19 // The cross-platform controller for this view.
20 __weak autofill::AutofillPopupController* controller_;
23 // Designated initializer.
24 - (id)initWithController:(autofill::AutofillPopupController*)controller
25 frame:(NSRect)frame;
27 // Informs the view that its controller has been (or will imminently be)
28 // destroyed.
29 - (void)controllerDestroyed;
31 - (void)invalidateRow:(size_t)row;
33 @end
35 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_VIEW_COCOA_H_