Chromium Code Reviews| Index: chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
| diff --git a/chrome/browser/ui/passwords/manage_passwords_bubble_model.h b/chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
| index 8674be851ab35b5aaedf2033721a259556aacd82..1ec12ee5c70ff1d99ac89616b22332fc7df3fd11 100644 |
| --- a/chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
| +++ b/chrome/browser/ui/passwords/manage_passwords_bubble_model.h |
| @@ -70,6 +70,8 @@ class ManagePasswordsBubbleModel : public content::WebContentsObserver { |
| // Called by the view code to notify about chosen credential. |
| void OnChooseCredentials(const autofill::PasswordForm& password_form); |
| + GURL origin() const { return origin_; } |
| + |
| password_manager::ui::State state() const { return state_; } |
| const base::string16& title() const { return title_; } |
| @@ -111,6 +113,7 @@ class ManagePasswordsBubbleModel : public content::WebContentsObserver { |
| static int PasswordFieldWidth(); |
| private: |
| + GURL origin_; |
|
vabr (Chromium)
2014/12/03 14:08:06
Please clarify (in a comment), origin of what this
melandory
2014/12/04 10:33:46
Done.
|
| password_manager::ui::State state_; |
| base::string16 title_; |
| autofill::PasswordForm pending_password_; |