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

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

Issue 126184: Move TableModel out of views/ and into app/.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: addressed comments, build fixes Created 11 years, 6 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_FONTS_PAGE_VIEW_H__ 5 #ifndef CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H__
6 #define CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H__ 6 #define CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H__
7 7
8 #include "chrome/browser/views/options/options_page_view.h" 8 #include "chrome/browser/views/options/options_page_view.h"
9 #include "chrome/browser/shell_dialogs.h" 9 #include "chrome/browser/shell_dialogs.h"
10 #include "chrome/common/pref_member.h" 10 #include "chrome/common/pref_member.h"
11 #include "views/controls/combobox/combobox.h" 11 #include "views/controls/combobox/combobox.h"
12 #include "views/controls/button/button.h" 12 #include "views/controls/button/button.h"
13 #include "views/view.h" 13 #include "views/view.h"
14 14
15 15
16 namespace views { 16 namespace views {
17 class GroupboxView; 17 class GroupboxView;
18 class Label; 18 class Label;
19 class NativeButton; 19 class NativeButton;
20 class TableModel;
21 class TableView; 20 class TableView;
22 } 21 }
23 22
23 class DefaultEncodingComboboxModel;
24 class FontDisplayView; 24 class FontDisplayView;
25 class DefaultEncodingComboboxModel; 25 class TableModel;
26 26
27 /////////////////////////////////////////////////////////////////////////////// 27 ///////////////////////////////////////////////////////////////////////////////
28 // FontsPageView 28 // FontsPageView
29 29
30 class FontsPageView : public OptionsPageView, 30 class FontsPageView : public OptionsPageView,
31 public views::Combobox::Listener, 31 public views::Combobox::Listener,
32 public SelectFontDialog::Listener, 32 public SelectFontDialog::Listener,
33 public views::ButtonListener { 33 public views::ButtonListener {
34 public: 34 public:
35 explicit FontsPageView(Profile* profile); 35 explicit FontsPageView(Profile* profile);
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 scoped_ptr<DefaultEncodingComboboxModel> default_encoding_combobox_model_; 118 scoped_ptr<DefaultEncodingComboboxModel> default_encoding_combobox_model_;
119 views::Label* default_encoding_combobox_label_; 119 views::Label* default_encoding_combobox_label_;
120 views::Combobox* default_encoding_combobox_; 120 views::Combobox* default_encoding_combobox_;
121 std::wstring default_encoding_selected_; 121 std::wstring default_encoding_selected_;
122 bool default_encoding_changed_; 122 bool default_encoding_changed_;
123 123
124 DISALLOW_EVIL_CONSTRUCTORS(FontsPageView); 124 DISALLOW_EVIL_CONSTRUCTORS(FontsPageView);
125 }; 125 };
126 126
127 #endif // #ifndef CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H__ 127 #endif // #ifndef CHROME_BROWSER_VIEWS_OPTIONS_FONTS_PAGE_VIEW_H__
OLDNEW
« no previous file with comments | « chrome/browser/views/options/exceptions_page_view.cc ('k') | chrome/browser/views/options/general_page_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698