OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 bool IsAutocompleteEnabled() override; | 70 bool IsAutocompleteEnabled() override; |
71 void UpdateAutofillPopupDataListValues( | 71 void UpdateAutofillPopupDataListValues( |
72 const std::vector<base::string16>& values, | 72 const std::vector<base::string16>& values, |
73 const std::vector<base::string16>& labels) override; | 73 const std::vector<base::string16>& labels) override; |
74 void PropagateAutofillPredictions( | 74 void PropagateAutofillPredictions( |
75 content::RenderFrameHost* rfh, | 75 content::RenderFrameHost* rfh, |
76 const std::vector<FormStructure*>& forms) override; | 76 const std::vector<FormStructure*>& forms) override; |
77 void DidFillOrPreviewField(const base::string16& autofilled_value, | 77 void DidFillOrPreviewField(const base::string16& autofilled_value, |
78 const base::string16& profile_full_name) override; | 78 const base::string16& profile_full_name) override; |
79 void OnFirstUserGestureObserved() override; | 79 void OnFirstUserGestureObserved() override; |
80 void LinkClicked(const GURL& url, WindowOpenDisposition disposition) override; | |
81 scoped_refptr<AutofillWebDataService> GetDatabase() override; | 80 scoped_refptr<AutofillWebDataService> GetDatabase() override; |
82 bool IsContextSecure(const GURL& form_origin) override; | 81 bool IsContextSecure(const GURL& form_origin) override; |
83 | 82 |
84 private: | 83 private: |
85 ios::ChromeBrowserState* browser_state_; | 84 ios::ChromeBrowserState* browser_state_; |
86 infobars::InfoBarManager* infobar_manager_; | 85 infobars::InfoBarManager* infobar_manager_; |
87 id<AutofillClientIOSBridge> bridge_; // Weak | 86 id<AutofillClientIOSBridge> bridge_; // Weak |
88 password_manager::PasswordGenerationManager* password_generation_manager_; | 87 password_manager::PasswordGenerationManager* password_generation_manager_; |
89 scoped_ptr<IdentityProvider> identity_provider_; | 88 scoped_ptr<IdentityProvider> identity_provider_; |
90 CardUnmaskPromptControllerImpl unmask_controller_; | 89 CardUnmaskPromptControllerImpl unmask_controller_; |
91 | 90 |
92 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); | 91 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); |
93 }; | 92 }; |
94 | 93 |
95 } // namespace autofill | 94 } // namespace autofill |
96 | 95 |
97 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ | 96 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ |
OLD | NEW |