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

Side by Side Diff: chrome/browser/ui/views/options/passwords_page_view.h

Issue 6204002: Carnitas: Remove chrome/browser/views, update references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Yay, more syncing 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) 2009 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_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "app/table_model.h" 11 #include "app/table_model.h"
12 #include "app/text_elider.h" 12 #include "app/text_elider.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
15 #include "base/stl_util-inl.h" 15 #include "base/stl_util-inl.h"
16 #include "chrome/browser/password_manager/password_store.h" 16 #include "chrome/browser/password_manager/password_store.h"
17 #include "chrome/browser/profiles/profile.h" 17 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/prefs/pref_member.h" 18 #include "chrome/browser/prefs/pref_member.h"
19 #include "chrome/browser/views/confirm_message_box_dialog.h" 19 #include "chrome/browser/ui/views/confirm_message_box_dialog.h"
20 #include "chrome/browser/views/options/options_page_view.h" 20 #include "chrome/browser/ui/views/options/options_page_view.h"
21 #include "views/controls/button/native_button.h" 21 #include "views/controls/button/native_button.h"
22 #include "views/controls/label.h" 22 #include "views/controls/label.h"
23 #include "views/controls/table/table_view.h" 23 #include "views/controls/table/table_view.h"
24 #include "views/controls/table/table_view_observer.h" 24 #include "views/controls/table/table_view_observer.h"
25 #include "views/window/dialog_delegate.h" 25 #include "views/window/dialog_delegate.h"
26 #include "views/window/window.h" 26 #include "views/window/window.h"
27 #include "webkit/glue/password_form.h" 27 #include "webkit/glue/password_form.h"
28 28
29 /////////////////////////////////////////////////////////////////////////////// 29 ///////////////////////////////////////////////////////////////////////////////
30 // PasswordTableModelObserver 30 // PasswordTableModelObserver
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 views::Label password_label_; 192 views::Label password_label_;
193 webkit_glue::PasswordForm* current_selected_password_; 193 webkit_glue::PasswordForm* current_selected_password_;
194 194
195 // Tracks the preference that controls whether showing passwords is allowed. 195 // Tracks the preference that controls whether showing passwords is allowed.
196 BooleanPrefMember allow_show_passwords_; 196 BooleanPrefMember allow_show_passwords_;
197 197
198 DISALLOW_COPY_AND_ASSIGN(PasswordsPageView); 198 DISALLOW_COPY_AND_ASSIGN(PasswordsPageView);
199 }; 199 };
200 200
201 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_ 201 #endif // CHROME_BROWSER_UI_VIEWS_OPTIONS_PASSWORDS_PAGE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698