Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(608)

Side by Side Diff: chrome/browser/ui/gtk/options/passwords_page_gtk.h

Issue 6257006: Move a bunch of random other files to src/ui/base... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_PAGE_GTK_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_
6 #define CHROME_BROWSER_UI_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"
15 #include "chrome/browser/password_manager/password_store.h" 14 #include "chrome/browser/password_manager/password_store.h"
16 #include "chrome/browser/prefs/pref_member.h" 15 #include "chrome/browser/prefs/pref_member.h"
17 #include "chrome/common/notification_observer.h" 16 #include "chrome/common/notification_observer.h"
17 #include "ui/base/gtk/gtk_signal.h"
18 18
19 class Profile; 19 class Profile;
20 20
21 class PasswordsPageGtk : public NotificationObserver { 21 class PasswordsPageGtk : public NotificationObserver {
22 public: 22 public:
23 explicit PasswordsPageGtk(Profile* profile); 23 explicit PasswordsPageGtk(Profile* profile);
24 virtual ~PasswordsPageGtk(); 24 virtual ~PasswordsPageGtk();
25 25
26 GtkWidget* get_page_widget() const { return page_; } 26 GtkWidget* get_page_widget() const { return page_; }
27 27
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_UI_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_ 115 #endif // CHROME_BROWSER_UI_GTK_OPTIONS_PASSWORDS_PAGE_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698