OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_MAC_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_MAC_ |
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_MAC_ | 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_MAC_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #import "base/cocoa_protocols_mac.h" | 12 #import "base/cocoa_protocols_mac.h" |
13 #include "base/scoped_nsobject.h" | 13 #include "base/scoped_nsobject.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "chrome/browser/autofill/autofill_dialog.h" | 15 #include "chrome/browser/autofill/autofill_dialog.h" |
16 #include "chrome/browser/autofill/autofill_profile.h" | 16 #include "chrome/browser/autofill/autofill_profile.h" |
17 #include "chrome/browser/autofill/credit_card.h" | 17 #include "chrome/browser/autofill/credit_card.h" |
18 #include "chrome/browser/pref_member.h" | 18 #include "chrome/browser/prefs/pref_member.h" |
19 | 19 |
20 namespace AutoFillDialogControllerInternal { | 20 namespace AutoFillDialogControllerInternal { |
21 class PersonalDataManagerObserver; | 21 class PersonalDataManagerObserver; |
22 class PrefObserver; | 22 class PrefObserver; |
23 } // AutoFillDialogControllerInternal | 23 } // AutoFillDialogControllerInternal |
24 | 24 |
25 @class AutoFillAddressSheetController; | 25 @class AutoFillAddressSheetController; |
26 @class AutoFillCreditCardSheetController; | 26 @class AutoFillCreditCardSheetController; |
27 @class AutoFillTableView; | 27 @class AutoFillTableView; |
28 class Profile; | 28 class Profile; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 - (AutoFillAddressSheetController*)addressSheetController; | 203 - (AutoFillAddressSheetController*)addressSheetController; |
204 - (AutoFillCreditCardSheetController*)creditCardSheetController; | 204 - (AutoFillCreditCardSheetController*)creditCardSheetController; |
205 - (void)selectAddressAtIndex:(size_t)i; | 205 - (void)selectAddressAtIndex:(size_t)i; |
206 - (void)selectCreditCardAtIndex:(size_t)i; | 206 - (void)selectCreditCardAtIndex:(size_t)i; |
207 - (void)addSelectedAddressAtIndex:(size_t)i; | 207 - (void)addSelectedAddressAtIndex:(size_t)i; |
208 - (void)addSelectedCreditCardAtIndex:(size_t)i; | 208 - (void)addSelectedCreditCardAtIndex:(size_t)i; |
209 - (BOOL)editButtonEnabled; | 209 - (BOOL)editButtonEnabled; |
210 @end | 210 @end |
211 | 211 |
212 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_MAC_ | 212 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_MAC_ |
OLD | NEW |