| 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_SECTION_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_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 "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" | 12 #include "chrome/browser/ui/autofill/autofill_dialog_types.h" |
| 13 #import "chrome/browser/ui/cocoa/autofill/autofill_input_field.h" | 13 #import "chrome/browser/ui/cocoa/autofill/autofill_input_field.h" |
| 14 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" | 14 #import "chrome/browser/ui/cocoa/autofill/autofill_layout.h" |
| 15 #include "components/autofill/core/browser/detail_input.h" |
| 16 #include "components/autofill/core/browser/dialog_section.h" |
| 15 | 17 |
| 16 namespace autofill { | 18 namespace autofill { |
| 17 class AutofillDialogViewDelegate; | 19 class AutofillDialogViewDelegate; |
| 18 } | 20 } |
| 19 | 21 |
| 20 @class AutofillSectionView; | 22 @class AutofillSectionView; |
| 21 @class AutofillSuggestionContainer; | 23 @class AutofillSuggestionContainer; |
| 22 @class AutofillTextField; | 24 @class AutofillTextField; |
| 23 @class AutofillTooltipController; | 25 @class AutofillTooltipController; |
| 24 @class LayoutView; | 26 @class LayoutView; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 // Sets the value for the suggestion text field. | 122 // Sets the value for the suggestion text field. |
| 121 - (void)setSuggestionFieldValue:(NSString*)text; | 123 - (void)setSuggestionFieldValue:(NSString*)text; |
| 122 | 124 |
| 123 // Activates a given input field, determined by |type|. Does nothing if the | 125 // Activates a given input field, determined by |type|. Does nothing if the |
| 124 // field is not part of this section. | 126 // field is not part of this section. |
| 125 - (void)activateFieldForType:(autofill::ServerFieldType)type; | 127 - (void)activateFieldForType:(autofill::ServerFieldType)type; |
| 126 | 128 |
| 127 @end | 129 @end |
| 128 | 130 |
| 129 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ | 131 #endif // CHROME_BROWSER_UI_COCOA_AUTOFILL_AUTOFILL_SECTION_CONTAINER_H_ |
| OLD | NEW |