OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_PASSWORD_MANAGER_EXCEPTIONS_VIEW_H__ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_EXCEPTIONS_VIEW_H__ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_EXCEPTIONS_VIEW_H__ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_EXCEPTIONS_VIEW_H__ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/scoped_ptr.h" | |
11 #include "chrome/browser/views/password_manager_view.h" | 10 #include "chrome/browser/views/password_manager_view.h" |
12 #include "chrome/browser/webdata/web_data_service.h" | 11 #include "chrome/browser/webdata/web_data_service.h" |
13 #include "chrome/common/stl_util-inl.h" | 12 #include "chrome/common/stl_util-inl.h" |
14 #include "chrome/common/gfx/text_elider.h" | 13 #include "chrome/common/gfx/text_elider.h" |
15 #include "chrome/views/dialog_delegate.h" | 14 #include "chrome/views/dialog_delegate.h" |
16 #include "chrome/views/label.h" | 15 #include "chrome/views/label.h" |
17 #include "chrome/views/native_button.h" | 16 #include "chrome/views/native_button.h" |
18 #include "chrome/views/table_view.h" | 17 #include "chrome/views/table_view.h" |
19 #include "chrome/views/window.h" | 18 #include "chrome/views/window.h" |
20 #include "webkit/glue/password_form.h" | 19 #include "webkit/glue/password_form.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 | 88 |
90 // The buttons and labels. | 89 // The buttons and labels. |
91 views::NativeButton remove_button_; | 90 views::NativeButton remove_button_; |
92 views::NativeButton remove_all_button_; | 91 views::NativeButton remove_all_button_; |
93 | 92 |
94 static PasswordManagerExceptionsView* instance_; | 93 static PasswordManagerExceptionsView* instance_; |
95 | 94 |
96 DISALLOW_EVIL_CONSTRUCTORS(PasswordManagerExceptionsView); | 95 DISALLOW_EVIL_CONSTRUCTORS(PasswordManagerExceptionsView); |
97 }; | 96 }; |
98 #endif // CHROME_BROWSER_PASSWORD_MANAGER_EXCEPTIONS_VIEW_H__ | 97 #endif // CHROME_BROWSER_PASSWORD_MANAGER_EXCEPTIONS_VIEW_H__ |
OLD | NEW |