| OLD | NEW |
| 1 // Copyright (c) 2010 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_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_ |
| 6 #define CHROME_BROWSER_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_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 <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "app/gtk_signal.h" | 14 #include "app/gtk_signal.h" |
| 15 #include "chrome/browser/password_manager/password_store.h" | 15 #include "chrome/browser/password_manager/password_store.h" |
| 16 #include "chrome/browser/prefs/pref_member.h" | 16 #include "chrome/browser/prefs/pref_member.h" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 // The parent GtkHBox widget and GtkWindow window. | 105 // The parent GtkHBox widget and GtkWindow window. |
| 106 GtkWidget* page_; | 106 GtkWidget* page_; |
| 107 | 107 |
| 108 Profile* profile_; | 108 Profile* profile_; |
| 109 BooleanPrefMember allow_show_passwords_; | 109 BooleanPrefMember allow_show_passwords_; |
| 110 std::vector<webkit_glue::PasswordForm*> password_list_; | 110 std::vector<webkit_glue::PasswordForm*> password_list_; |
| 111 | 111 |
| 112 DISALLOW_COPY_AND_ASSIGN(PasswordsPageGtk); | 112 DISALLOW_COPY_AND_ASSIGN(PasswordsPageGtk); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 #endif // CHROME_BROWSER_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_ | 115 #endif // CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_ |
| OLD | NEW |