OLD | NEW |
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_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "chrome/browser/ui/passwords/account_avatar_fetcher.h" | 10 #include "chrome/browser/ui/passwords/account_avatar_fetcher.h" |
11 #include "components/password_manager/content/common/credential_manager_types.h" | 11 #include "components/password_manager/core/common/credential_manager_types.h" |
12 #include "ui/views/controls/button/label_button.h" | 12 #include "ui/views/controls/button/label_button.h" |
13 | 13 |
14 namespace autofill { | 14 namespace autofill { |
15 struct PasswordForm; | 15 struct PasswordForm; |
16 } | 16 } |
17 | 17 |
18 namespace gfx { | 18 namespace gfx { |
19 class ImageSkia; | 19 class ImageSkia; |
20 } | 20 } |
21 | 21 |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 views::ImageView* image_view_; | 65 views::ImageView* image_view_; |
66 views::Label* upper_label_; | 66 views::Label* upper_label_; |
67 views::Label* lower_label_; | 67 views::Label* lower_label_; |
68 | 68 |
69 base::WeakPtrFactory<CredentialsItemView> weak_ptr_factory_; | 69 base::WeakPtrFactory<CredentialsItemView> weak_ptr_factory_; |
70 | 70 |
71 DISALLOW_COPY_AND_ASSIGN(CredentialsItemView); | 71 DISALLOW_COPY_AND_ASSIGN(CredentialsItemView); |
72 }; | 72 }; |
73 | 73 |
74 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ | 74 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_ITEM_VIEW_H_ |
OLD | NEW |