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 CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ |
6 #define CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ | 6 #define CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ |
7 | 7 |
8 #include "base/memory/scoped_vector.h" | 8 #include "base/memory/scoped_vector.h" |
9 #include "components/autofill/core/common/password_form.h" | 9 #include "components/autofill/core/common/password_form.h" |
10 #include "components/password_manager/core/browser/password_manager_metrics_util
.h" | 10 #include "components/password_manager/core/browser/password_manager_metrics_util
.h" |
11 #include "components/password_manager/core/common/password_manager_ui.h" | 11 #include "components/password_manager/core/common/password_manager_ui.h" |
12 #include "content/public/browser/web_contents_observer.h" | 12 #include "content/public/browser/web_contents_observer.h" |
13 #include "ui/gfx/range/range.h" | 13 #include "ui/gfx/range/range.h" |
14 | 14 |
15 class ManagePasswordsIconController; | |
16 class ManagePasswordsUIController; | |
17 class Profile; | 15 class Profile; |
18 | 16 |
19 namespace content { | 17 namespace content { |
20 class WebContents; | 18 class WebContents; |
21 } | 19 } |
22 | 20 |
23 namespace password_manager { | 21 namespace password_manager { |
24 enum class CredentialType; | 22 enum class CredentialType; |
25 } | 23 } |
26 | 24 |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 gfx::Range autosignin_welcome_link_range_; | 180 gfx::Range autosignin_welcome_link_range_; |
183 password_manager::metrics_util::UIDisplayDisposition display_disposition_; | 181 password_manager::metrics_util::UIDisplayDisposition display_disposition_; |
184 password_manager::metrics_util::UIDismissalReason dismissal_reason_; | 182 password_manager::metrics_util::UIDismissalReason dismissal_reason_; |
185 password_manager::metrics_util::UpdatePasswordSubmissionEvent | 183 password_manager::metrics_util::UpdatePasswordSubmissionEvent |
186 update_password_submission_event_; | 184 update_password_submission_event_; |
187 | 185 |
188 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleModel); | 186 DISALLOW_COPY_AND_ASSIGN(ManagePasswordsBubbleModel); |
189 }; | 187 }; |
190 | 188 |
191 #endif // CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ | 189 #endif // CHROME_BROWSER_UI_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MODEL_H_ |
OLD | NEW |