Chromium Code Reviews| Index: chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2be21f784e5d663f8f56810f6a4dd4ce155597b3 |
| --- /dev/null |
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_cocoa.h |
| @@ -0,0 +1,32 @@ |
| +// 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_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_ |
| +#define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_ |
| + |
| +#import <Cocoa/Cocoa.h> |
| + |
| +#import "ui/base/cocoa/base_view.h" |
| + |
| +class AutofillPopupController; |
| +class AutofillPopupViewMac; |
| + |
| +// Draws the native Autofill popup view on Mac. |
| +@interface AutofillPopupViewCocoa : BaseView { |
| + @private |
| + // The cross-platform controller for this view. |
| + __weak AutofillPopupController* controller_; |
|
Nico
2013/01/11 16:27:38
We don't use arc, so __weak does nothing for us. D
Robert Sesek
2013/01/11 16:28:30
I've used __weak in the past instead of "// weak"
|
| +} |
| + |
| +// Designated initializer. |
| +- (id)initWithController:(AutofillPopupController*)controller |
| + frame:(NSRect)frame; |
| + |
| +// Informs the view that its controller has been (or will imminently be) |
| +// destroyed. |
| +- (void)controllerDestroyed; |
| + |
| +@end |
| + |
| +#endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_POPUP_CONTENT_VIEW_H_ |