| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_MAIN_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_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" | 11 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
| 12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" | 12 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" |
| 13 #include "components/autofill/core/browser/dialog_section.h" |
| 13 | 14 |
| 14 @class AutofillDetailsContainer; | 15 @class AutofillDetailsContainer; |
| 15 @class AutofillDialogWindowController; | 16 @class AutofillDialogWindowController; |
| 16 @class AutofillNotificationContainer; | 17 @class AutofillNotificationContainer; |
| 17 @class AutofillSectionContainer; | 18 @class AutofillSectionContainer; |
| 18 @class AutofillTooltipController; | 19 @class AutofillTooltipController; |
| 19 @class GTMWidthBasedTweaker; | 20 @class GTMWidthBasedTweaker; |
| 20 @class HyperlinkTextView; | 21 @class HyperlinkTextView; |
| 21 | 22 |
| 22 namespace autofill { | 23 namespace autofill { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 // AutofillMainContainer helper functions, for testing purposes only. | 100 // AutofillMainContainer helper functions, for testing purposes only. |
| 100 @interface AutofillMainContainer (Testing) | 101 @interface AutofillMainContainer (Testing) |
| 101 | 102 |
| 102 @property(readonly, nonatomic) NSButton* saveInChromeCheckboxForTesting; | 103 @property(readonly, nonatomic) NSButton* saveInChromeCheckboxForTesting; |
| 103 @property(readonly, nonatomic) NSImageView* buttonStripImageForTesting; | 104 @property(readonly, nonatomic) NSImageView* buttonStripImageForTesting; |
| 104 @property(readonly, nonatomic) NSImageView* saveInChromeTooltipForTesting; | 105 @property(readonly, nonatomic) NSImageView* saveInChromeTooltipForTesting; |
| 105 | 106 |
| 106 @end | 107 @end |
| 107 | 108 |
| 108 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_ | 109 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_MAIN_CONTAINER_H_ |
| OLD | NEW |