OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_GTK_OPTIONS_PASSWORDS_EXCEPTIONS_PAGE_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_EXCEPTIONS_PAGE_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_EXCEPTIONS_PAGE_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_EXCEPTIONS_PAGE_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "app/gtk_signal.h" | |
14 #include "chrome/browser/password_manager/password_store.h" | 13 #include "chrome/browser/password_manager/password_store.h" |
| 14 #include "ui/base/gtk/gtk_signal.h" |
15 | 15 |
16 class Profile; | 16 class Profile; |
17 | 17 |
18 // A page in the show saved passwords dialog that lists what sites we never | 18 // A page in the show saved passwords dialog that lists what sites we never |
19 // show passwords for, with controls for the user to add/remove sites from that | 19 // show passwords for, with controls for the user to add/remove sites from that |
20 // list. | 20 // list. |
21 class PasswordsExceptionsPageGtk { | 21 class PasswordsExceptionsPageGtk { |
22 public: | 22 public: |
23 explicit PasswordsExceptionsPageGtk(Profile* profile); | 23 explicit PasswordsExceptionsPageGtk(Profile* profile); |
24 virtual ~PasswordsExceptionsPageGtk(); | 24 virtual ~PasswordsExceptionsPageGtk(); |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 // The parent GtkHBox widget. | 86 // The parent GtkHBox widget. |
87 GtkWidget* page_; | 87 GtkWidget* page_; |
88 | 88 |
89 Profile* profile_; | 89 Profile* profile_; |
90 std::vector<webkit_glue::PasswordForm*> exception_list_; | 90 std::vector<webkit_glue::PasswordForm*> exception_list_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsPageGtk); | 92 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsPageGtk); |
93 }; | 93 }; |
94 | 94 |
95 #endif // CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_EXCEPTIONS_PAGE_GTK_H_ | 95 #endif // CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_EXCEPTIONS_PAGE_GTK_H_ |
OLD | NEW |