Index: chrome/browser/autofill/autofill_dialog_controller_mac.h |
diff --git a/chrome/browser/autofill/autofill_dialog_controller_mac.h b/chrome/browser/autofill/autofill_dialog_controller_mac.h |
index 34e40fa400c0a764c03b78ca30563873061f8368..3318443012e22ea1b37e3c803268202a4b528976 100644 |
--- a/chrome/browser/autofill/autofill_dialog_controller_mac.h |
+++ b/chrome/browser/autofill/autofill_dialog_controller_mac.h |
@@ -58,6 +58,9 @@ class Profile; |
// Working list of input credit cards. |
std::vector<CreditCard> creditCards_; |
+ // State of checkbox for enabling AutoFill in general. |
+ BOOL autoFillEnabled_; |
+ |
// State of checkbox for enabling Mac Address Book integration. |
BOOL auxiliaryEnabled_; |
@@ -81,6 +84,11 @@ class Profile; |
personalDataManagerObserver_; |
} |
+// Property representing state of the AutoFill enabled preference. Checkbox is |
+// bound to this in nib. Also, enabled state of other controls are also bound |
+// to this property. |
+@property (nonatomic) BOOL autoFillEnabled; |
+ |
// Property representing state of Address Book "me" card usage. Checkbox is |
// bound to this in nib. |
@property (nonatomic) BOOL auxiliaryEnabled; |