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

Side by Side Diff: ios/chrome/browser/ui/autofill/autofill_client_ios.h

Issue 2505533002: Http Bad: Add "Learn more" sublabel to warning message and make it clickable (Closed)
Patch Set: rebase Created 4 years 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 unified diff | Download patch
OLDNEW
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 <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 void PropagateAutofillPredictions( 84 void PropagateAutofillPredictions(
85 content::RenderFrameHost* rfh, 85 content::RenderFrameHost* rfh,
86 const std::vector<FormStructure*>& forms) override; 86 const std::vector<FormStructure*>& forms) override;
87 void DidFillOrPreviewField(const base::string16& autofilled_value, 87 void DidFillOrPreviewField(const base::string16& autofilled_value,
88 const base::string16& profile_full_name) override; 88 const base::string16& profile_full_name) override;
89 void OnFirstUserGestureObserved() override; 89 void OnFirstUserGestureObserved() override;
90 scoped_refptr<AutofillWebDataService> GetDatabase() override; 90 scoped_refptr<AutofillWebDataService> GetDatabase() override;
91 bool IsContextSecure(const GURL& form_origin) override; 91 bool IsContextSecure(const GURL& form_origin) override;
92 bool ShouldShowSigninPromo() override; 92 bool ShouldShowSigninPromo() override;
93 void StartSigninFlow() override; 93 void StartSigninFlow() override;
94 void ShowHttpNotSecureExplanation() override;
94 95
95 private: 96 private:
96 ios::ChromeBrowserState* browser_state_; 97 ios::ChromeBrowserState* browser_state_;
97 infobars::InfoBarManager* infobar_manager_; 98 infobars::InfoBarManager* infobar_manager_;
98 id<AutofillClientIOSBridge> bridge_; // Weak 99 id<AutofillClientIOSBridge> bridge_; // Weak
99 password_manager::PasswordGenerationManager* password_generation_manager_; 100 password_manager::PasswordGenerationManager* password_generation_manager_;
100 std::unique_ptr<IdentityProvider> identity_provider_; 101 std::unique_ptr<IdentityProvider> identity_provider_;
101 CardUnmaskPromptControllerImpl unmask_controller_; 102 CardUnmaskPromptControllerImpl unmask_controller_;
102 103
103 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS); 104 DISALLOW_COPY_AND_ASSIGN(AutofillClientIOS);
104 }; 105 };
105 106
106 } // namespace autofill 107 } // namespace autofill
107 108
108 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_ 109 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_CLIENT_IOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698