Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Unified Diff: chrome/browser/ui/autofill/chrome_autofill_client.h

Issue 339053003: patched from issue 334653006, modified (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/chrome_autofill_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/chrome_autofill_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698