| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| 11 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | |
| 12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" | 11 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" |
| 12 #include "components/autofill/core/browser/ui/autofill_dialog_types.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 @class AutofillTooltipController; | 15 @class AutofillTooltipController; |
| 16 @class HyperlinkTextView; | 16 @class HyperlinkTextView; |
| 17 | 17 |
| 18 namespace autofill { | 18 namespace autofill { |
| 19 class AutofillDialogViewDelegate; | 19 class AutofillDialogViewDelegate; |
| 20 } | 20 } |
| 21 | 21 |
| 22 // Contains a single notification for requestAutocomplete dialog. | 22 // Contains a single notification for requestAutocomplete dialog. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 - (BOOL)hasArrow; | 60 - (BOOL)hasArrow; |
| 61 | 61 |
| 62 // Compute preferred size for given width. | 62 // Compute preferred size for given width. |
| 63 - (NSSize)preferredSizeForWidth:(CGFloat)width; | 63 - (NSSize)preferredSizeForWidth:(CGFloat)width; |
| 64 | 64 |
| 65 - (IBAction)checkboxClicked:(id)sender; | 65 - (IBAction)checkboxClicked:(id)sender; |
| 66 | 66 |
| 67 @end | 67 @end |
| 68 | 68 |
| 69 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTROLLER_H_ | 69 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_NOTIFICATION_CONTROLLER_H_ |
| OLD | NEW |