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

Side by Side Diff: chrome/browser/password_manager/chrome_password_manager_client.h

Issue 1776673003: Fix the password bubble titles for android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix the tests Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 bool update_password) override; 56 bool update_password) override;
57 bool PromptUserToChooseCredentials( 57 bool PromptUserToChooseCredentials(
58 ScopedVector<autofill::PasswordForm> local_forms, 58 ScopedVector<autofill::PasswordForm> local_forms,
59 ScopedVector<autofill::PasswordForm> federated_forms, 59 ScopedVector<autofill::PasswordForm> federated_forms,
60 const GURL& origin, 60 const GURL& origin,
61 base::Callback<void(const password_manager::CredentialInfo&)> callback) 61 base::Callback<void(const password_manager::CredentialInfo&)> callback)
62 override; 62 override;
63 void ForceSavePassword() override; 63 void ForceSavePassword() override;
64 void GeneratePassword() override; 64 void GeneratePassword() override;
65 void NotifyUserAutoSignin( 65 void NotifyUserAutoSignin(
66 ScopedVector<autofill::PasswordForm> local_forms) override; 66 ScopedVector<autofill::PasswordForm> local_forms,
67 const GURL& origin) override;
67 void NotifyUserCouldBeAutoSignedIn( 68 void NotifyUserCouldBeAutoSignedIn(
68 scoped_ptr<autofill::PasswordForm> form) override; 69 scoped_ptr<autofill::PasswordForm> form) override;
69 void NotifySuccessfulLoginWithExistingPassword( 70 void NotifySuccessfulLoginWithExistingPassword(
70 const autofill::PasswordForm& form) override; 71 const autofill::PasswordForm& form) override;
71 void AutomaticPasswordSave(scoped_ptr<password_manager::PasswordFormManager> 72 void AutomaticPasswordSave(scoped_ptr<password_manager::PasswordFormManager>
72 saved_form_manager) override; 73 saved_form_manager) override;
73 void PasswordWasAutofilled( 74 void PasswordWasAutofilled(
74 const autofill::PasswordFormMap& best_matches, 75 const autofill::PasswordFormMap& best_matches,
75 const GURL& origin, 76 const GURL& origin,
76 const std::vector<scoped_ptr<autofill::PasswordForm>>* federated_matches) 77 const std::vector<scoped_ptr<autofill::PasswordForm>>* federated_matches)
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 scoped_ptr<password_manager::LogManager> log_manager_; 185 scoped_ptr<password_manager::LogManager> log_manager_;
185 186
186 // Set during 'NotifyUserCouldBeAutoSignedIn' in order to store the 187 // Set during 'NotifyUserCouldBeAutoSignedIn' in order to store the
187 // form for potential use during 'NotifySuccessfulLoginWithExistingPassword'. 188 // form for potential use during 'NotifySuccessfulLoginWithExistingPassword'.
188 scoped_ptr<autofill::PasswordForm> possible_auto_sign_in_; 189 scoped_ptr<autofill::PasswordForm> possible_auto_sign_in_;
189 190
190 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient); 191 DISALLOW_COPY_AND_ASSIGN(ChromePasswordManagerClient);
191 }; 192 };
192 193
193 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_ 194 #endif // CHROME_BROWSER_PASSWORD_MANAGER_CHROME_PASSWORD_MANAGER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/password_manager/chrome_password_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698