| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 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_AUTOFILL_NOTIFICATION_CONTAINER_H_ | |
| 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTAINER_H_ | |
| 7 | |
| 8 #import <Cocoa/Cocoa.h> | |
| 9 | |
| 10 #include <memory> | |
| 11 #include <vector> | |
| 12 | |
| 13 #include "base/mac/scoped_nsobject.h" | |
| 14 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" | |
| 15 | |
| 16 @class AutofillArrowView; | |
| 17 | |
| 18 namespace autofill { | |
| 19 class DialogNotification; | |
| 20 typedef std::vector<DialogNotification> DialogNotifications; | |
| 21 class AutofillDialogViewDelegate; | |
| 22 } | |
| 23 | |
| 24 // Container for all notifications shown in requestAutocomplete dialog. | |
| 25 @interface AutofillNotificationContainer : NSViewController<AutofillLayout> { | |
| 26 @private | |
| 27 // Array of all AutofillNotificationControllers. | |
| 28 base::scoped_nsobject<NSMutableArray> notificationControllers_; | |
| 29 | |
| 30 // Main delegate for the dialog. Weak, owns dialog. | |
| 31 autofill::AutofillDialogViewDelegate* delegate_; | |
| 32 } | |
| 33 | |
| 34 // Designated initializer. | |
| 35 - (id)initWithDelegate:(autofill::AutofillDialogViewDelegate*)delegate; | |
| 36 | |
| 37 // Computes the views preferred size given a fixed width. | |
| 38 - (NSSize)preferredSizeForWidth:(CGFloat)width; | |
| 39 | |
| 40 // Sets the notification contents. | |
| 41 - (void)setNotifications:(const autofill::DialogNotifications&) notifications; | |
| 42 | |
| 43 @end | |
| 44 | |
| 45 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTAINER_H_ | |
| OLD | NEW |