| 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_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "app/gfx/text_elider.h" |
| 10 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 11 #include "base/stl_util-inl.h" | 12 #include "base/stl_util-inl.h" |
| 12 #include "chrome/browser/views/options/options_page_view.h" | 13 #include "chrome/browser/views/options/options_page_view.h" |
| 13 #include "chrome/browser/webdata/web_data_service.h" | 14 #include "chrome/browser/webdata/web_data_service.h" |
| 14 #include "chrome/common/gfx/text_elider.h" | |
| 15 #include "views/controls/button/native_button.h" | 15 #include "views/controls/button/native_button.h" |
| 16 #include "views/controls/label.h" | 16 #include "views/controls/label.h" |
| 17 #include "views/controls/table/table_view.h" | 17 #include "views/controls/table/table_view.h" |
| 18 #include "views/window/dialog_delegate.h" | 18 #include "views/window/dialog_delegate.h" |
| 19 #include "views/window/window.h" | 19 #include "views/window/window.h" |
| 20 #include "webkit/glue/password_form.h" | 20 #include "webkit/glue/password_form.h" |
| 21 | 21 |
| 22 class Profile; | 22 class Profile; |
| 23 | 23 |
| 24 /////////////////////////////////////////////////////////////////////////////// | 24 /////////////////////////////////////////////////////////////////////////////// |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 // The buttons and labels. | 170 // The buttons and labels. |
| 171 MultiLabelButtons show_button_; | 171 MultiLabelButtons show_button_; |
| 172 views::NativeButton remove_button_; | 172 views::NativeButton remove_button_; |
| 173 views::NativeButton remove_all_button_; | 173 views::NativeButton remove_all_button_; |
| 174 views::Label password_label_; | 174 views::Label password_label_; |
| 175 | 175 |
| 176 DISALLOW_COPY_AND_ASSIGN(PasswordsPageView); | 176 DISALLOW_COPY_AND_ASSIGN(PasswordsPageView); |
| 177 }; | 177 }; |
| 178 | 178 |
| 179 #endif // CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ | 179 #endif // CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ |
| OLD | NEW |