OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_OPTIONS_PASSWORDS_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "app/table_model.h" | 11 #include "app/table_model.h" |
12 #include "app/text_elider.h" | 12 #include "app/text_elider.h" |
13 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
14 #include "base/stl_util-inl.h" | 14 #include "base/stl_util-inl.h" |
15 #include "chrome/browser/password_manager/password_store.h" | 15 #include "chrome/browser/password_manager/password_store.h" |
16 #include "chrome/browser/profile.h" | 16 #include "chrome/browser/profiles/profile.h" |
17 #include "chrome/browser/prefs/pref_member.h" | 17 #include "chrome/browser/prefs/pref_member.h" |
18 #include "chrome/browser/views/confirm_message_box_dialog.h" | 18 #include "chrome/browser/views/confirm_message_box_dialog.h" |
19 #include "chrome/browser/views/options/options_page_view.h" | 19 #include "chrome/browser/views/options/options_page_view.h" |
20 #include "views/controls/button/native_button.h" | 20 #include "views/controls/button/native_button.h" |
21 #include "views/controls/label.h" | 21 #include "views/controls/label.h" |
22 #include "views/controls/table/table_view.h" | 22 #include "views/controls/table/table_view.h" |
23 #include "views/controls/table/table_view_observer.h" | 23 #include "views/controls/table/table_view_observer.h" |
24 #include "views/window/dialog_delegate.h" | 24 #include "views/window/dialog_delegate.h" |
25 #include "views/window/window.h" | 25 #include "views/window/window.h" |
26 #include "webkit/glue/password_form.h" | 26 #include "webkit/glue/password_form.h" |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 views::Label password_label_; | 191 views::Label password_label_; |
192 webkit_glue::PasswordForm* current_selected_password_; | 192 webkit_glue::PasswordForm* current_selected_password_; |
193 | 193 |
194 // Tracks the preference that controls whether showing passwords is allowed. | 194 // Tracks the preference that controls whether showing passwords is allowed. |
195 BooleanPrefMember allow_show_passwords_; | 195 BooleanPrefMember allow_show_passwords_; |
196 | 196 |
197 DISALLOW_COPY_AND_ASSIGN(PasswordsPageView); | 197 DISALLOW_COPY_AND_ASSIGN(PasswordsPageView); |
198 }; | 198 }; |
199 | 199 |
200 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ | 200 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ |
OLD | NEW |