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

Side by Side Diff: chrome/browser/views/options/passwords_exceptions_window_view.h

Issue 155668: Refactoring of tabbed-pane component so it can be ported to Linux toolkit_view (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_
6 #define CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ 6 #define CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_
7 7
8 #include "views/controls/tabbed_pane.h"
9 #include "views/view.h" 8 #include "views/view.h"
10 #include "views/window/dialog_delegate.h" 9 #include "views/window/dialog_delegate.h"
11 #include "views/window/window.h"
12 10
13 class Profile; 11 class Profile;
14 class PasswordsPageView; 12 class PasswordsPageView;
15 class ExceptionsPageView; 13 class ExceptionsPageView;
16 14
15 namespace views {
16 class TabbedPane;
17 }
18
17 /////////////////////////////////////////////////////////////////////////////// 19 ///////////////////////////////////////////////////////////////////////////////
18 // PasswordsExceptionsWindowView 20 // PasswordsExceptionsWindowView
19 // 21 //
20 // The contents of the "Save passwords and exceptions" dialog window. 22 // The contents of the "Save passwords and exceptions" dialog window.
21 // 23 //
22 class PasswordsExceptionsWindowView : public views::View, 24 class PasswordsExceptionsWindowView : public views::View,
23 public views::DialogDelegate { 25 public views::DialogDelegate {
24 public: 26 public:
25 explicit PasswordsExceptionsWindowView(Profile* profile); 27 explicit PasswordsExceptionsWindowView(Profile* profile);
26 virtual ~PasswordsExceptionsWindowView() {} 28 virtual ~PasswordsExceptionsWindowView() {}
(...skipping 28 matching lines...) Expand all
55 ExceptionsPageView* exceptions_page_view_; 57 ExceptionsPageView* exceptions_page_view_;
56 58
57 Profile* profile_; 59 Profile* profile_;
58 60
59 static PasswordsExceptionsWindowView* instance_; 61 static PasswordsExceptionsWindowView* instance_;
60 62
61 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsWindowView); 63 DISALLOW_COPY_AND_ASSIGN(PasswordsExceptionsWindowView);
62 }; 64 };
63 65
64 #endif // CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_ 66 #endif // CHROME_BROWSER_VIEWS_OPTIONS_PASSWORDS_EXCEPTIONS_WINDOW_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/views/options/options_window_view.cc ('k') | chrome/browser/views/options/passwords_exceptions_window_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698