Index: chrome/browser/ui/autofill/chrome_autofill_client.h |
diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.h b/chrome/browser/ui/autofill/chrome_autofill_client.h |
index 57a19de4aef4d6b53afd3b5bb42735c555df6272..979c7c324ee89070700b5d80201e1965ad74b563 100644 |
--- a/chrome/browser/ui/autofill/chrome_autofill_client.h |
+++ b/chrome/browser/ui/autofill/chrome_autofill_client.h |
@@ -22,6 +22,7 @@ class WebContents; |
namespace autofill { |
class AutofillDialogController; |
+class AutofillKeystoneBridgeWrapper; |
class AutofillPopupControllerImpl; |
struct FormData; |
@@ -84,10 +85,21 @@ class ChromeAutofillClient |
explicit ChromeAutofillClient(content::WebContents* web_contents); |
friend class content::WebContentsUserData<ChromeAutofillClient>; |
+#if defined(OS_MACOSX) && !defined(OS_IOS) |
+ // (Comment goes here...) |
+ void RegisterForKeystoneNotifications(); |
+ void UnregisterFromKeystoneNotifications(); |
+#endif // defined(OS_MACOSX) && !defined(OS_IOS) |
+ |
content::WebContents* const web_contents_; |
base::WeakPtr<AutofillDialogController> dialog_controller_; |
base::WeakPtr<AutofillPopupControllerImpl> popup_controller_; |
+#if defined(OS_MACOSX) && !defined(OS_IOS) |
+ // (Comment goes here...) |
+ AutofillKeystoneBridgeWrapper* bridge_; |
+#endif // defined(OS_MACOSX) && !defined(OS_IOS) |
+ |
DISALLOW_COPY_AND_ASSIGN(ChromeAutofillClient); |
}; |