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

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

Issue 1627193003: [Smart Lock, UI] Display origin in account chooser dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 const std::vector<const autofill::PasswordForm*>& local_credentials_forms() 56 const std::vector<const autofill::PasswordForm*>& local_credentials_forms()
57 const; 57 const;
58 58
59 const std::vector<const autofill::PasswordForm*>& 59 const std::vector<const autofill::PasswordForm*>&
60 federated_credentials_forms() const; 60 federated_credentials_forms() const;
61 61
62 void ChooseCredential(size_t index, password_manager::CredentialType type); 62 void ChooseCredential(size_t index, password_manager::CredentialType type);
63 63
64 content::WebContents* web_contents_; 64 content::WebContents* web_contents_;
65 ManagePasswordsState passwords_data_; 65 ManagePasswordsState passwords_data_;
66 GURL origin_;
66 67
67 DISALLOW_COPY_AND_ASSIGN(AccountChooserDialogAndroid); 68 DISALLOW_COPY_AND_ASSIGN(AccountChooserDialogAndroid);
68 }; 69 };
69 70
70 // Native JNI methods 71 // Native JNI methods
71 bool RegisterAccountChooserDialogAndroid(JNIEnv* env); 72 bool RegisterAccountChooserDialogAndroid(JNIEnv* env);
72 73
73 #endif // CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_ 74 #endif // CHROME_BROWSER_PASSWORD_MANAGER_ACCOUNT_CHOOSER_DIALOG_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698